Files
EdgeAPI/internal/setup/sql.go
GoEdgeLab 885b59eb15 更新SQL
2022-10-22 10:22:31 +08:00

16 lines
2.0 MiB
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package setup
import (
"encoding/json"
"github.com/iwind/TeaGo/logs"
)
// 最新版本的数据库SQL语句用来对比并升级已有的数据库
// 由 sql-dump/main.go 自动生成
func init() {
err := json.Unmarshal([]byte("{\"tables\":[{\"name\":\"edgeACMEAuthentications\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeACMEAuthentications` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `taskId` bigint(11) unsigned DEFAULT '0' COMMENT '任务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `token` varchar(255) DEFAULT NULL COMMENT '令牌',\\n `key` varchar(1024) DEFAULT NULL COMMENT '密钥',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`),\\n KEY `token` (`token`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ACME认证'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"taskId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '任务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"token\",\"definition\":\"varchar(255) COMMENT '令牌'\"},{\"name\":\"key\",\"definition\":\"varchar(1024) COMMENT '密钥'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"token\",\"definition\":\"KEY `token` (`token`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeACMEProviderAccounts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeACMEProviderAccounts` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `providerCode` varchar(128) DEFAULT NULL COMMENT '代号',\\n `eabKid` varchar(128) DEFAULT NULL COMMENT 'KID',\\n `eabKey` varchar(512) DEFAULT NULL COMMENT 'Key',\\n `error` varchar(2048) DEFAULT NULL COMMENT '最后一条错误信息',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ACME提供商'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"providerCode\",\"definition\":\"varchar(128) COMMENT '代号'\"},{\"name\":\"eabKid\",\"definition\":\"varchar(128) COMMENT 'KID'\"},{\"name\":\"eabKey\",\"definition\":\"varchar(512) COMMENT 'Key'\"},{\"name\":\"error\",\"definition\":\"varchar(2048) COMMENT '最后一条错误信息'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeACMETaskLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeACMETaskLogs` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `taskId` bigint(11) unsigned DEFAULT '0' COMMENT '任务ID',\\n `isOk` tinyint(1) unsigned DEFAULT '1' COMMENT '是否成功',\\n `error` varchar(4096) DEFAULT NULL COMMENT '错误信息',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '运行时间',\\n PRIMARY KEY (`id`),\\n KEY `taskId` (`taskId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ACME任务运行日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"taskId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '任务ID'\"},{\"name\":\"isOk\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否成功'\"},{\"name\":\"error\",\"definition\":\"varchar(4096) COMMENT '错误信息'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '运行时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"taskId\",\"definition\":\"KEY `taskId` (`taskId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeACMETasks\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeACMETasks` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `acmeUserId` int(11) unsigned DEFAULT '0' COMMENT 'ACME用户ID',\\n `dnsDomain` varchar(255) DEFAULT NULL COMMENT 'DNS主域名',\\n `dnsProviderId` bigint(11) unsigned DEFAULT '0' COMMENT 'DNS服务商',\\n `domains` json DEFAULT NULL COMMENT '证书域名',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `certId` bigint(11) unsigned DEFAULT '0' COMMENT '生成的证书ID',\\n `autoRenew` tinyint(1) unsigned DEFAULT '0' COMMENT '是否自动更新',\\n `authType` varchar(64) DEFAULT NULL COMMENT '认证类型',\\n `authURL` varchar(1024) DEFAULT NULL COMMENT '认证URL',\\n PRIMARY KEY (`id`),\\n KEY `adminId` (`adminId`),\\n KEY `userId` (`userId`),\\n KEY `acmeUserId` (`acmeUserId`),\\n KEY `certId` (`certId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ACME任务'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"acmeUserId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'ACME用户ID'\"},{\"name\":\"dnsDomain\",\"definition\":\"varchar(255) COMMENT 'DNS主域名'\"},{\"name\":\"dnsProviderId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT 'DNS服务商'\"},{\"name\":\"domains\",\"definition\":\"json COMMENT '证书域名'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"certId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '生成的证书ID'\"},{\"name\":\"autoRenew\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否自动更新'\"},{\"name\":\"authType\",\"definition\":\"varchar(64) COMMENT '认证类型'\"},{\"name\":\"authURL\",\"definition\":\"varchar(1024) COMMENT '认证URL'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"adminId\",\"definition\":\"KEY `adminId` (`adminId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"acmeUserId\",\"definition\":\"KEY `acmeUserId` (`acmeUserId`) USING BTREE\"},{\"name\":\"certId\",\"definition\":\"KEY `certId` (`certId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeACMEUsers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeACMEUsers` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `privateKey` text COMMENT '私钥',\\n `email` varchar(255) DEFAULT NULL COMMENT 'E-mail',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `description` varchar(512) DEFAULT NULL COMMENT '备注介绍',\\n `registration` json DEFAULT NULL COMMENT '注册信息',\\n `providerCode` varchar(128) DEFAULT 'letsencrypt' COMMENT '服务商代号',\\n `accountId` bigint(11) unsigned DEFAULT '0' COMMENT '提供商ID',\\n PRIMARY KEY (`id`),\\n KEY `adminId` (`adminId`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ACME用户'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"privateKey\",\"definition\":\"text COMMENT '私钥'\"},{\"name\":\"email\",\"definition\":\"varchar(255) COMMENT 'E-mail'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '备注介绍'\"},{\"name\":\"registration\",\"definition\":\"json COMMENT '注册信息'\"},{\"name\":\"providerCode\",\"definition\":\"varchar(128) DEFAULT 'letsencrypt' COMMENT '服务商代号'\"},{\"name\":\"accountId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '提供商ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"adminId\",\"definition\":\"KEY `adminId` (`adminId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAPIAccessTokens\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAPIAccessTokens` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `token` varchar(255) DEFAULT NULL COMMENT '令牌',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `expiredAt` bigint(11) unsigned DEFAULT '0' COMMENT '过期时间',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `token` (`token`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='API访问令牌'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"token\",\"definition\":\"varchar(255) COMMENT '令牌'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"expiredAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '过期时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"token\",\"definition\":\"KEY `token` (`token`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAPIMethodStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAPIMethodStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `apiNodeId` int(11) unsigned DEFAULT '0' COMMENT 'API节点ID',\\n `method` varchar(128) DEFAULT NULL COMMENT '方法',\\n `tag` varchar(128) DEFAULT NULL COMMENT '标签方法',\\n `costMs` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '耗时Ms',\\n `peekMs` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '峰值耗时',\\n `countCalls` bigint(20) unsigned DEFAULT '0' COMMENT '调用次数',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `apiNodeId_method_tag_day` (`apiNodeId`,`method`,`tag`,`day`) USING BTREE,\\n KEY `day` (`day`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='API方法统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"apiNodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'API节点ID'\"},{\"name\":\"method\",\"definition\":\"varchar(128) COMMENT '方法'\"},{\"name\":\"tag\",\"definition\":\"varchar(128) COMMENT '标签方法'\"},{\"name\":\"costMs\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '耗时Ms'\"},{\"name\":\"peekMs\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '峰值耗时'\"},{\"name\":\"countCalls\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '调用次数'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"apiNodeId_method_tag_day\",\"definition\":\"UNIQUE KEY `apiNodeId_method_tag_day` (`apiNodeId`,`method`,`tag`,`day`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAPINodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAPINodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '专用集群ID',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `http` json DEFAULT NULL COMMENT '监听的HTTP配置',\\n `https` json DEFAULT NULL COMMENT '监听的HTTPS配置',\\n `restIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否开放REST',\\n `restHTTP` json DEFAULT NULL COMMENT 'REST HTTP配置',\\n `restHTTPS` json DEFAULT NULL COMMENT 'REST HTTPS配置',\\n `accessAddrs` json DEFAULT NULL COMMENT '外部访问地址',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `status` json DEFAULT NULL COMMENT '运行状态',\\n `isPrimary` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为主API节点',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='API节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '专用集群ID'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"http\",\"definition\":\"json COMMENT '监听的HTTP配置'\"},{\"name\":\"https\",\"definition\":\"json COMMENT '监听的HTTPS配置'\"},{\"name\":\"restIsOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否开放REST'\"},{\"name\":\"restHTTP\",\"definition\":\"json COMMENT 'REST HTTP配置'\"},{\"name\":\"restHTTPS\",\"definition\":\"json COMMENT 'REST HTTPS配置'\"},{\"name\":\"accessAddrs\",\"definition\":\"json COMMENT '外部访问地址'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '运行状态'\"},{\"name\":\"isPrimary\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为主API节点'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAPITokens\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAPITokens` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `nodeId` varchar(32) DEFAULT NULL COMMENT '节点ID',\\n `secret` varchar(255) DEFAULT NULL COMMENT '节点密钥',\\n `role` varchar(64) DEFAULT NULL COMMENT '节点角色',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `nodeId` (`nodeId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='API令牌管理'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"nodeId\",\"definition\":\"varchar(32) COMMENT '节点ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(255) COMMENT '节点密钥'\"},{\"name\":\"role\",\"definition\":\"varchar(64) COMMENT '节点角色'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAdmins\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAdmins` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `username` varchar(64) DEFAULT NULL COMMENT '用户名',\\n `password` varchar(32) DEFAULT NULL COMMENT '密码',\\n `fullname` varchar(64) DEFAULT NULL COMMENT '全名',\\n `isSuper` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为超级管理员',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `modules` json DEFAULT NULL COMMENT '允许的模块',\\n `canLogin` tinyint(1) unsigned DEFAULT '1' COMMENT '是否可以登录',\\n `theme` varchar(64) DEFAULT NULL COMMENT '模板设置',\\n PRIMARY KEY (`id`),\\n KEY `username` (`username`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='管理员'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"username\",\"definition\":\"varchar(64) COMMENT '用户名'\"},{\"name\":\"password\",\"definition\":\"varchar(32) COMMENT '密码'\"},{\"name\":\"fullname\",\"definition\":\"varchar(64) COMMENT '全名'\"},{\"name\":\"isSuper\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为超级管理员'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"modules\",\"definition\":\"json COMMENT '允许的模块'\"},{\"name\":\"canLogin\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否可以登录'\"},{\"name\":\"theme\",\"definition\":\"varchar(64) COMMENT '模板设置'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"username\",\"definition\":\"KEY `username` (`username`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAuthorityKeys\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAuthorityKeys` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `value` varchar(4096) DEFAULT NULL COMMENT 'Key值',\\n `dayFrom` date DEFAULT NULL COMMENT '开始日期',\\n `dayTo` date DEFAULT NULL COMMENT '结束日期',\\n `hostname` varchar(255) DEFAULT NULL COMMENT 'Hostname',\\n `macAddresses` json DEFAULT NULL COMMENT 'MAC地址',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建/修改时间',\\n `company` varchar(512) DEFAULT NULL COMMENT '公司组织',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='企业版认证信息'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"value\",\"definition\":\"varchar(4096) COMMENT 'Key值'\"},{\"name\":\"dayFrom\",\"definition\":\"date COMMENT '开始日期'\"},{\"name\":\"dayTo\",\"definition\":\"date COMMENT '结束日期'\"},{\"name\":\"hostname\",\"definition\":\"varchar(255) COMMENT 'Hostname'\"},{\"name\":\"macAddresses\",\"definition\":\"json COMMENT 'MAC地址'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建/修改时间'\"},{\"name\":\"company\",\"definition\":\"varchar(512) COMMENT '公司组织'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeAuthorityNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeAuthorityNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `status` json DEFAULT NULL COMMENT '运行状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='监控节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '运行状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeClientBrowsers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeClientBrowsers` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '浏览器名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `name` (`name`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='终端浏览器信息'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '浏览器名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"name\",\"definition\":\"UNIQUE KEY `name` (`name`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeClientSystems\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeClientSystems` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '系统名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `state` tinyint(1) unsigned DEFAULT '1',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `name` (`name`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='终端操作系统信息'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '系统名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"name\",\"definition\":\"UNIQUE KEY `name` (`name`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeDBNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeDBNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `role` varchar(255) DEFAULT NULL COMMENT '数据库角色',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `host` varchar(255) DEFAULT NULL COMMENT '主机',\\n `port` int(11) unsigned DEFAULT '0' COMMENT '端口',\\n `database` varchar(255) DEFAULT NULL COMMENT '数据库名称',\\n `username` varchar(255) DEFAULT NULL COMMENT '用户名',\\n `password` varchar(255) DEFAULT NULL COMMENT '密码',\\n `charset` varchar(255) DEFAULT NULL COMMENT '通讯字符集',\\n `connTimeout` int(11) unsigned DEFAULT '0' COMMENT '连接超时时间(秒)',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='数据库节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"role\",\"definition\":\"varchar(255) COMMENT '数据库角色'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"host\",\"definition\":\"varchar(255) COMMENT '主机'\"},{\"name\":\"port\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '端口'\"},{\"name\":\"database\",\"definition\":\"varchar(255) COMMENT '数据库名称'\"},{\"name\":\"username\",\"definition\":\"varchar(255) COMMENT '用户名'\"},{\"name\":\"password\",\"definition\":\"varchar(255) COMMENT '密码'\"},{\"name\":\"charset\",\"definition\":\"varchar(255) COMMENT '通讯字符集'\"},{\"name\":\"connTimeout\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '连接超时时间(秒)'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeDNSDomains\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeDNSDomains` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `providerId` int(11) unsigned DEFAULT '0' COMMENT '服务商ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否可用',\\n `name` varchar(255) DEFAULT NULL COMMENT '域名',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `dataUpdatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '数据更新时间',\\n `dataError` varchar(512) DEFAULT NULL COMMENT '数据更新错误',\\n `data` text COMMENT '原始数据信息',\\n `records` json DEFAULT NULL COMMENT '所有解析记录',\\n `routes` json DEFAULT NULL COMMENT '线路数据',\\n `isUp` tinyint(1) unsigned DEFAULT '1' COMMENT '是否在线',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `isDeleted` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已删除',\\n PRIMARY KEY (`id`),\\n KEY `providerId` (`providerId`),\\n KEY `name` (`name`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='管理的域名'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"providerId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务商ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否可用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"dataUpdatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '数据更新时间'\"},{\"name\":\"dataError\",\"definition\":\"varchar(512) COMMENT '数据更新错误'\"},{\"name\":\"data\",\"definition\":\"text COMMENT '原始数据信息'\"},{\"name\":\"records\",\"definition\":\"json COMMENT '所有解析记录'\"},{\"name\":\"routes\",\"definition\":\"json COMMENT '线路数据'\"},{\"name\":\"isUp\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否在线'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"isDeleted\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已删除'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"providerId\",\"definition\":\"KEY `providerId` (`providerId`) USING BTREE\"},{\"name\":\"name\",\"definition\":\"KEY `name` (`name`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeDNSProviders\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeDNSProviders` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '供应商类型',\\n `apiParams` json DEFAULT NULL COMMENT 'API参数',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `dataUpdatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '数据同步时间',\\n PRIMARY KEY (`id`),\\n KEY `type` (`type`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DNS服务商'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '供应商类型'\"},{\"name\":\"apiParams\",\"definition\":\"json COMMENT 'API参数'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"dataUpdatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '数据同步时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`type`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeDNSTasks\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeDNSTasks` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `domainId` int(11) unsigned DEFAULT '0' COMMENT '域名ID',\\n `recordName` varchar(255) DEFAULT NULL COMMENT '记录名',\\n `type` varchar(255) DEFAULT NULL COMMENT '任务类型',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '更新时间',\\n `isDone` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成',\\n `isOk` tinyint(1) unsigned DEFAULT '0' COMMENT '是否成功',\\n `error` varchar(1024) DEFAULT NULL COMMENT '错误信息',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`clusterId`,`serverId`,`nodeId`,`domainId`,`recordName`,`type`) USING BTREE,\\n KEY `isDone` (`isDone`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DNS更新任务'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"domainId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"recordName\",\"definition\":\"varchar(255) COMMENT '记录名'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '任务类型'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '更新时间'\"},{\"name\":\"isDone\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成'\"},{\"name\":\"isOk\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否成功'\"},{\"name\":\"error\",\"definition\":\"varchar(1024) COMMENT '错误信息'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`clusterId`,`serverId`,`nodeId`,`domainId`,`recordName`,`type`) USING BTREE\"},{\"name\":\"isDone\",\"definition\":\"KEY `isDone` (`isDone`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeFileChunks\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeFileChunks` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `fileId` int(11) unsigned DEFAULT '0' COMMENT '文件ID',\\n `data` longblob COMMENT '分块内容',\\n PRIMARY KEY (`id`),\\n KEY `fileId` (`fileId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='文件片段'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"fileId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '文件ID'\"},{\"name\":\"data\",\"definition\":\"longblob COMMENT '分块内容'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"fileId\",\"definition\":\"KEY `fileId` (`fileId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeFiles\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeFiles` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `code` varchar(40) DEFAULT NULL COMMENT '代号',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `description` varchar(255) DEFAULT NULL COMMENT '文件描述',\\n `filename` varchar(255) DEFAULT NULL COMMENT '文件名',\\n `size` int(11) unsigned DEFAULT '0' COMMENT '文件尺寸',\\n `mimeType` varchar(128) DEFAULT NULL COMMENT 'Mime类型',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `type` varchar(64) DEFAULT '' COMMENT '类型',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `isFinished` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成上传',\\n `isPublic` tinyint(1) unsigned DEFAULT '0' COMMENT '是否可以公开访问',\\n PRIMARY KEY (`id`),\\n KEY `type` (`type`),\\n KEY `code` (`code`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='文件管理'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"code\",\"definition\":\"varchar(40) COMMENT '代号'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"description\",\"definition\":\"varchar(255) COMMENT '文件描述'\"},{\"name\":\"filename\",\"definition\":\"varchar(255) COMMENT '文件名'\"},{\"name\":\"size\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '文件尺寸'\"},{\"name\":\"mimeType\",\"definition\":\"varchar(128) COMMENT 'Mime类型'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '类型'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"isFinished\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成上传'\"},{\"name\":\"isPublic\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否可以公开访问'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`type`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"KEY `code` (`code`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPAccessLogPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPAccessLogPolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `type` varchar(255) DEFAULT NULL COMMENT '存储类型',\\n `options` json DEFAULT NULL COMMENT '存储选项',\\n `conds` json DEFAULT NULL COMMENT '请求条件',\\n `isPublic` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为公用',\\n `firewallOnly` tinyint(1) unsigned DEFAULT '0' COMMENT '是否只记录防火墙相关',\\n `version` int(10) unsigned DEFAULT '0' COMMENT '版本号',\\n PRIMARY KEY (`id`),\\n KEY `isPublic` (`isPublic`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='访问日志策略'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '存储类型'\"},{\"name\":\"options\",\"definition\":\"json COMMENT '存储选项'\"},{\"name\":\"conds\",\"definition\":\"json COMMENT '请求条件'\"},{\"name\":\"isPublic\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为公用'\"},{\"name\":\"firewallOnly\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否只记录防火墙相关'\"},{\"name\":\"version\",\"definition\":\"int(10) unsigned DEFAULT '0' COMMENT '版本号'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"isPublic\",\"definition\":\"KEY `isPublic` (`isPublic`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPAccessLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPAccessLogs` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `status` int(3) unsigned DEFAULT '0' COMMENT '状态码',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `content` json DEFAULT NULL COMMENT '日志内容',\\n `requestId` varchar(128) DEFAULT NULL COMMENT '请求ID',\\n `firewallPolicyId` int(11) unsigned DEFAULT '0' COMMENT 'WAF策略ID',\\n `firewallRuleGroupId` int(11) unsigned DEFAULT '0' COMMENT 'WAF分组ID',\\n `firewallRuleSetId` int(11) unsigned DEFAULT '0' COMMENT 'WAF集ID',\\n `firewallRuleId` int(11) unsigned DEFAULT '0' COMMENT 'WAF规则ID',\\n `remoteAddr` varchar(64) DEFAULT NULL COMMENT 'IP地址',\\n `domain` varchar(128) DEFAULT NULL COMMENT '域名',\\n `requestBody` mediumblob COMMENT '请求内容',\\n `responseBody` mediumblob COMMENT '响应内容',\\n PRIMARY KEY (`id`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `serverId_status` (`serverId`,`status`),\\n KEY `requestId` (`requestId`),\\n KEY `firewallPolicyId` (`firewallPolicyId`),\\n KEY `firewallRuleGroupId` (`firewallRuleGroupId`),\\n KEY `firewallRuleSetId` (`firewallRuleSetId`),\\n KEY `firewallRuleId` (`firewallRuleId`),\\n KEY `remoteAddr` (`remoteAddr`),\\n KEY `domain` (`domain`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='访问日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"status\",\"definition\":\"int(3) unsigned DEFAULT '0' COMMENT '状态码'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"content\",\"definition\":\"json COMMENT '日志内容'\"},{\"name\":\"requestId\",\"definition\":\"varchar(128) COMMENT '请求ID'\"},{\"name\":\"firewallPolicyId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF策略ID'\"},{\"name\":\"firewallRuleGroupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF分组ID'\"},{\"name\":\"firewallRuleSetId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF集ID'\"},{\"name\":\"firewallRuleId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF规则ID'\"},{\"name\":\"remoteAddr\",\"definition\":\"varchar(64) COMMENT 'IP地址'\"},{\"name\":\"domain\",\"definition\":\"varchar(128) COMMENT '域名'\"},{\"name\":\"requestBody\",\"definition\":\"mediumblob COMMENT '请求内容'\"},{\"name\":\"responseBody\",\"definition\":\"mediumblob COMMENT '响应内容'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"serverId_status\",\"definition\":\"KEY `serverId_status` (`serverId`,`status`) USING BTREE\"},{\"name\":\"requestId\",\"definition\":\"KEY `requestId` (`requestId`) USING BTREE\"},{\"name\":\"firewallPolicyId\",\"definition\":\"KEY `firewallPolicyId` (`firewallPolicyId`) USING BTREE\"},{\"name\":\"firewallRuleGroupId\",\"definition\":\"KEY `firewallRuleGroupId` (`firewallRuleGroupId`) USING BTREE\"},{\"name\":\"firewallRuleSetId\",\"definition\":\"KEY `firewallRuleSetId` (`firewallRuleSetId`) USING BTREE\"},{\"name\":\"firewallRuleId\",\"definition\":\"KEY `firewallRuleId` (`firewallRuleId`) USING BTREE\"},{\"name\":\"remoteAddr\",\"definition\":\"KEY `remoteAddr` (`remoteAddr`) USING BTREE\"},{\"name\":\"domain\",\"definition\":\"KEY `domain` (`domain`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPAuthPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPAuthPolicies` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(128) DEFAULT NULL COMMENT '名称',\\n `type` varchar(32) DEFAULT NULL COMMENT '类型',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='HTTP认证策略'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(128) COMMENT '名称'\"},{\"name\":\"type\",\"definition\":\"varchar(32) COMMENT '类型'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPBrotliPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPBrotliPolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `level` int(11) unsigned DEFAULT '0' COMMENT '压缩级别',\\n `minLength` json DEFAULT NULL COMMENT '可压缩最小值',\\n `maxLength` json DEFAULT NULL COMMENT '可压缩最大值',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `conds` json DEFAULT NULL COMMENT '条件',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Gzip配置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"level\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '压缩级别'\"},{\"name\":\"minLength\",\"definition\":\"json COMMENT '可压缩最小值'\"},{\"name\":\"maxLength\",\"definition\":\"json COMMENT '可压缩最大值'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"conds\",\"definition\":\"json COMMENT '条件'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPCachePolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPCachePolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `capacity` json DEFAULT NULL COMMENT '容量数据',\\n `maxKeys` bigint(20) unsigned DEFAULT '0' COMMENT '最多Key值',\\n `maxSize` json DEFAULT NULL COMMENT '最大缓存内容尺寸',\\n `type` varchar(255) DEFAULT NULL COMMENT '存储类型',\\n `options` json DEFAULT NULL COMMENT '存储选项',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `refs` json DEFAULT NULL COMMENT '默认的缓存设置',\\n `syncCompressionCache` tinyint(1) unsigned DEFAULT '0' COMMENT '是否同步写入压缩缓存',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='HTTP缓存策略'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"capacity\",\"definition\":\"json COMMENT '容量数据'\"},{\"name\":\"maxKeys\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '最多Key值'\"},{\"name\":\"maxSize\",\"definition\":\"json COMMENT '最大缓存内容尺寸'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '存储类型'\"},{\"name\":\"options\",\"definition\":\"json COMMENT '存储选项'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"refs\",\"definition\":\"json COMMENT '默认的缓存设置'\"},{\"name\":\"syncCompressionCache\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否同步写入压缩缓存'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPCacheTaskKeys\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPCacheTaskKeys` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `taskId` bigint(20) unsigned DEFAULT '0' COMMENT '任务ID',\\n `key` varchar(1024) DEFAULT NULL COMMENT 'Key',\\n `keyType` varchar(64) DEFAULT NULL COMMENT 'Key类型key|prefix',\\n `type` varchar(255) DEFAULT NULL COMMENT '操作类型',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodes` json DEFAULT NULL COMMENT '节点',\\n `errors` json DEFAULT NULL COMMENT '错误信息',\\n `isDone` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成',\\n PRIMARY KEY (`id`),\\n KEY `taskId` (`taskId`),\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='缓存任务Key'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"taskId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '任务ID'\"},{\"name\":\"key\",\"definition\":\"varchar(1024) COMMENT 'Key'\"},{\"name\":\"keyType\",\"definition\":\"varchar(64) COMMENT 'Key类型key|prefix'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '操作类型'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodes\",\"definition\":\"json COMMENT '节点'\"},{\"name\":\"errors\",\"definition\":\"json COMMENT '错误信息'\"},{\"name\":\"isDone\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"taskId\",\"definition\":\"KEY `taskId` (`taskId`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPCacheTasks\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPCacheTasks` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '任务类型purge|fetch',\\n `keyType` varchar(255) DEFAULT NULL COMMENT 'Key类型',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `doneAt` bigint(11) unsigned DEFAULT '0' COMMENT '完成时间',\\n `day` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n `isDone` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成',\\n `isOk` tinyint(1) unsigned DEFAULT '1' COMMENT '是否完全成功',\\n `isReady` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已准备好',\\n `description` varchar(255) DEFAULT NULL COMMENT '描述',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `day` (`day`),\\n KEY `isDone` (`isDone`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='缓存相关任务'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '任务类型purge|fetch'\"},{\"name\":\"keyType\",\"definition\":\"varchar(255) COMMENT 'Key类型'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"doneAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '完成时间'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"},{\"name\":\"isDone\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成'\"},{\"name\":\"isOk\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否完全成功'\"},{\"name\":\"isReady\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已准备好'\"},{\"name\":\"description\",\"definition\":\"varchar(255) COMMENT '描述'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"isDone\",\"definition\":\"KEY `isDone` (`isDone`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPDeflatePolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPDeflatePolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `level` int(11) unsigned DEFAULT '0' COMMENT '压缩级别',\\n `minLength` json DEFAULT NULL COMMENT '可压缩最小值',\\n `maxLength` json DEFAULT NULL COMMENT '可压缩最大值',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `conds` json DEFAULT NULL COMMENT '条件',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Gzip配置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"level\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '压缩级别'\"},{\"name\":\"minLength\",\"definition\":\"json COMMENT '可压缩最小值'\"},{\"name\":\"maxLength\",\"definition\":\"json COMMENT '可压缩最大值'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"conds\",\"definition\":\"json COMMENT '条件'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPFastcgis\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPFastcgis` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `address` varchar(255) DEFAULT NULL COMMENT '地址',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `readTimeout` json DEFAULT NULL COMMENT '读取超时',\\n `connTimeout` json DEFAULT NULL COMMENT '连接超时',\\n `poolSize` int(11) unsigned DEFAULT '0' COMMENT '连接池尺寸',\\n `pathInfoPattern` varchar(512) DEFAULT NULL COMMENT 'PATH_INFO匹配',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Fastcgi设置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"address\",\"definition\":\"varchar(255) COMMENT '地址'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"readTimeout\",\"definition\":\"json COMMENT '读取超时'\"},{\"name\":\"connTimeout\",\"definition\":\"json COMMENT '连接超时'\"},{\"name\":\"poolSize\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '连接池尺寸'\"},{\"name\":\"pathInfoPattern\",\"definition\":\"varchar(512) COMMENT 'PATH_INFO匹配'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPFirewallPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPFirewallPolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `groupId` int(11) unsigned DEFAULT '0' COMMENT '服务分组ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `inbound` json DEFAULT NULL COMMENT '入站规则',\\n `outbound` json DEFAULT NULL COMMENT '出站规则',\\n `blockOptions` json DEFAULT NULL COMMENT 'BLOCK选项',\\n `captchaOptions` json DEFAULT NULL COMMENT '验证码选项',\\n `mode` varchar(32) DEFAULT 'defend' COMMENT '模式',\\n `useLocalFirewall` tinyint(1) unsigned DEFAULT '1' COMMENT '是否自动使用本地防火墙',\\n `synFlood` json DEFAULT NULL COMMENT 'SynFlood防御设置',\\n `log` json DEFAULT NULL COMMENT '日志配置',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='HTTP防火墙'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"groupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务分组ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"inbound\",\"definition\":\"json COMMENT '入站规则'\"},{\"name\":\"outbound\",\"definition\":\"json COMMENT '出站规则'\"},{\"name\":\"blockOptions\",\"definition\":\"json COMMENT 'BLOCK选项'\"},{\"name\":\"captchaOptions\",\"definition\":\"json COMMENT '验证码选项'\"},{\"name\":\"mode\",\"definition\":\"varchar(32) DEFAULT 'defend' COMMENT '模式'\"},{\"name\":\"useLocalFirewall\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否自动使用本地防火墙'\"},{\"name\":\"synFlood\",\"definition\":\"json COMMENT 'SynFlood防御设置'\"},{\"name\":\"log\",\"definition\":\"json COMMENT '日志配置'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPFirewallRuleGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPFirewallRuleGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `isTemplate` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为预置模板',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `sets` json DEFAULT NULL COMMENT '规则集列表',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`),\\n KEY `code` (`code`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='防火墙规则分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"isTemplate\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为预置模板'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"sets\",\"definition\":\"json COMMENT '规则集列表'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"KEY `code` (`code`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPFirewallRuleSets\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPFirewallRuleSets` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `rules` json DEFAULT NULL COMMENT '规则列表',\\n `connector` varchar(64) DEFAULT NULL COMMENT '规则之间的关系',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `action` varchar(255) DEFAULT NULL COMMENT '执行的动作(过期)',\\n `actionOptions` json DEFAULT NULL COMMENT '动作的选项(过期)',\\n `actions` json DEFAULT NULL COMMENT '一组动作',\\n `ignoreLocal` tinyint(1) unsigned DEFAULT '0' COMMENT '忽略局域网请求',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='防火墙规则集'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"rules\",\"definition\":\"json COMMENT '规则列表'\"},{\"name\":\"connector\",\"definition\":\"varchar(64) COMMENT '规则之间的关系'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"action\",\"definition\":\"varchar(255) COMMENT '执行的动作(过期)'\"},{\"name\":\"actionOptions\",\"definition\":\"json COMMENT '动作的选项(过期)'\"},{\"name\":\"actions\",\"definition\":\"json COMMENT '一组动作'\"},{\"name\":\"ignoreLocal\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '忽略局域网请求'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPFirewallRules\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPFirewallRules` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `description` varchar(1024) DEFAULT NULL COMMENT '说明',\\n `param` varchar(1024) DEFAULT NULL COMMENT '参数',\\n `paramFilters` json DEFAULT NULL COMMENT '处理器',\\n `operator` varchar(255) DEFAULT NULL COMMENT '操作符',\\n `value` varchar(4096) DEFAULT NULL COMMENT '对比值',\\n `isCaseInsensitive` tinyint(1) unsigned DEFAULT '1' COMMENT '是否大小写不敏感',\\n `checkpointOptions` json DEFAULT NULL COMMENT '检查点参数',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='防火墙规则'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '说明'\"},{\"name\":\"param\",\"definition\":\"varchar(1024) COMMENT '参数'\"},{\"name\":\"paramFilters\",\"definition\":\"json COMMENT '处理器'\"},{\"name\":\"operator\",\"definition\":\"varchar(255) COMMENT '操作符'\"},{\"name\":\"value\",\"definition\":\"varchar(4096) COMMENT '对比值'\"},{\"name\":\"isCaseInsensitive\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否大小写不敏感'\"},{\"name\":\"checkpointOptions\",\"definition\":\"json COMMENT '检查点参数'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPGzips\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPGzips` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `level` int(11) unsigned DEFAULT '0' COMMENT '压缩级别',\\n `minLength` json DEFAULT NULL COMMENT '可压缩最小值',\\n `maxLength` json DEFAULT NULL COMMENT '可压缩最大值',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `conds` json DEFAULT NULL COMMENT '条件',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Gzip配置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"level\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '压缩级别'\"},{\"name\":\"minLength\",\"definition\":\"json COMMENT '可压缩最小值'\"},{\"name\":\"maxLength\",\"definition\":\"json COMMENT '可压缩最大值'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"conds\",\"definition\":\"json COMMENT '条件'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPHeaderPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPHeaderPolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否启用',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `addHeaders` json DEFAULT NULL COMMENT '添加的Header',\\n `addTrailers` json DEFAULT NULL COMMENT '添加的Trailers',\\n `setHeaders` json DEFAULT NULL COMMENT '设置Header',\\n `replaceHeaders` json DEFAULT NULL COMMENT '替换Header内容',\\n `expires` json DEFAULT NULL COMMENT 'Expires单独设置',\\n `deleteHeaders` json DEFAULT NULL COMMENT '删除的Headers',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Header定义'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"addHeaders\",\"definition\":\"json COMMENT '添加的Header'\"},{\"name\":\"addTrailers\",\"definition\":\"json COMMENT '添加的Trailers'\"},{\"name\":\"setHeaders\",\"definition\":\"json COMMENT '设置Header'\"},{\"name\":\"replaceHeaders\",\"definition\":\"json COMMENT '替换Header内容'\"},{\"name\":\"expires\",\"definition\":\"json COMMENT 'Expires单独设置'\"},{\"name\":\"deleteHeaders\",\"definition\":\"json COMMENT '删除的Headers'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPHeaders\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPHeaders` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `value` varchar(1024) DEFAULT NULL COMMENT '值',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `status` json DEFAULT NULL COMMENT '状态码设置',\\n `disableRedirect` tinyint(1) unsigned DEFAULT '0' COMMENT '是否不支持跳转',\\n `shouldAppend` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为附加',\\n `shouldReplace` tinyint(1) unsigned DEFAULT '0' COMMENT '是否替换变量',\\n `replaceValues` json DEFAULT NULL COMMENT '替换的值',\\n `methods` json DEFAULT NULL COMMENT '支持的方法',\\n `domains` json DEFAULT NULL COMMENT '支持的域名',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='HTTP Header'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"value\",\"definition\":\"varchar(1024) COMMENT '值'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '状态码设置'\"},{\"name\":\"disableRedirect\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否不支持跳转'\"},{\"name\":\"shouldAppend\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为附加'\"},{\"name\":\"shouldReplace\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否替换变量'\"},{\"name\":\"replaceValues\",\"definition\":\"json COMMENT '替换的值'\"},{\"name\":\"methods\",\"definition\":\"json COMMENT '支持的方法'\"},{\"name\":\"domains\",\"definition\":\"json COMMENT '支持的域名'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPLocations\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPLocations` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `parentId` int(11) unsigned DEFAULT '0' COMMENT '父级ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `pattern` varchar(1024) DEFAULT NULL COMMENT '匹配规则',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `webId` int(11) unsigned DEFAULT '0' COMMENT 'Web配置ID',\\n `reverseProxy` json DEFAULT NULL COMMENT '反向代理',\\n `urlPrefix` varchar(1024) DEFAULT NULL COMMENT 'URL前缀',\\n `isBreak` tinyint(1) unsigned DEFAULT '0' COMMENT '是否终止匹配',\\n `conds` json DEFAULT NULL COMMENT '匹配条件',\\n `domains` json DEFAULT NULL COMMENT '专属域名',\\n PRIMARY KEY (`id`),\\n KEY `webId` (`webId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='路由规则配置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"parentId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '父级ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"pattern\",\"definition\":\"varchar(1024) COMMENT '匹配规则'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"webId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'Web配置ID'\"},{\"name\":\"reverseProxy\",\"definition\":\"json COMMENT '反向代理'\"},{\"name\":\"urlPrefix\",\"definition\":\"varchar(1024) COMMENT 'URL前缀'\"},{\"name\":\"isBreak\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否终止匹配'\"},{\"name\":\"conds\",\"definition\":\"json COMMENT '匹配条件'\"},{\"name\":\"domains\",\"definition\":\"json COMMENT '专属域名'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"webId\",\"definition\":\"KEY `webId` (`webId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPPages\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPPages` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用',\\n `statusList` json DEFAULT NULL COMMENT '状态列表',\\n `url` varchar(1024) DEFAULT NULL COMMENT '页面URL',\\n `newStatus` int(3) DEFAULT NULL COMMENT '新状态码',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `body` text COMMENT '页面内容',\\n `bodyType` varchar(32) DEFAULT 'url' COMMENT '内容类型',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='特殊页面'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用'\"},{\"name\":\"statusList\",\"definition\":\"json COMMENT '状态列表'\"},{\"name\":\"url\",\"definition\":\"varchar(1024) COMMENT '页面URL'\"},{\"name\":\"newStatus\",\"definition\":\"int(3) COMMENT '新状态码'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"body\",\"definition\":\"text COMMENT '页面内容'\"},{\"name\":\"bodyType\",\"definition\":\"varchar(32) DEFAULT 'url' COMMENT '内容类型'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPRewriteRules\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPRewriteRules` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `pattern` varchar(1024) DEFAULT NULL COMMENT '匹配规则',\\n `replace` varchar(1024) DEFAULT NULL COMMENT '跳转后的地址',\\n `mode` varchar(255) DEFAULT NULL COMMENT '替换模式',\\n `redirectStatus` int(3) unsigned DEFAULT '0' COMMENT '跳转的状态码',\\n `proxyHost` varchar(255) DEFAULT NULL COMMENT '代理的主机名',\\n `isBreak` tinyint(1) unsigned DEFAULT '1' COMMENT '是否终止解析',\\n `withQuery` tinyint(1) unsigned DEFAULT '1' COMMENT '是否保留URI参数',\\n `conds` json DEFAULT NULL COMMENT '匹配条件',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='重写规则'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"pattern\",\"definition\":\"varchar(1024) COMMENT '匹配规则'\"},{\"name\":\"replace\",\"definition\":\"varchar(1024) COMMENT '跳转后的地址'\"},{\"name\":\"mode\",\"definition\":\"varchar(255) COMMENT '替换模式'\"},{\"name\":\"redirectStatus\",\"definition\":\"int(3) unsigned DEFAULT '0' COMMENT '跳转的状态码'\"},{\"name\":\"proxyHost\",\"definition\":\"varchar(255) COMMENT '代理的主机名'\"},{\"name\":\"isBreak\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否终止解析'\"},{\"name\":\"withQuery\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否保留URI参数'\"},{\"name\":\"conds\",\"definition\":\"json COMMENT '匹配条件'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPWebs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPWebs` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `root` json DEFAULT NULL COMMENT '根目录',\\n `charset` json DEFAULT NULL COMMENT '字符集',\\n `shutdown` json DEFAULT NULL COMMENT '临时关闭页面配置',\\n `pages` json DEFAULT NULL COMMENT '特殊页面',\\n `redirectToHttps` json DEFAULT NULL COMMENT '跳转到HTTPS设置',\\n `indexes` json DEFAULT NULL COMMENT '首页文件列表',\\n `maxRequestBodySize` json DEFAULT NULL COMMENT '最大允许的请求内容尺寸',\\n `requestHeader` json DEFAULT NULL COMMENT '请求Header配置',\\n `responseHeader` json DEFAULT NULL COMMENT '响应Header配置',\\n `accessLog` json DEFAULT NULL COMMENT '访问日志配置',\\n `stat` json DEFAULT NULL COMMENT '统计配置',\\n `gzip` json DEFAULT NULL COMMENT 'Gzip配置v0.3.2弃用)',\\n `compression` json DEFAULT NULL COMMENT '压缩配置',\\n `cache` json DEFAULT NULL COMMENT '缓存配置',\\n `firewall` json DEFAULT NULL COMMENT '防火墙设置',\\n `locations` json DEFAULT NULL COMMENT '路由规则配置',\\n `websocket` json DEFAULT NULL COMMENT 'Websocket设置',\\n `rewriteRules` json DEFAULT NULL COMMENT '重写规则配置',\\n `hostRedirects` json DEFAULT NULL COMMENT '域名跳转',\\n `fastcgi` json DEFAULT NULL COMMENT 'Fastcgi配置',\\n `auth` json DEFAULT NULL COMMENT '认证策略配置',\\n `webp` json DEFAULT NULL COMMENT 'WebP配置',\\n `remoteAddr` json DEFAULT NULL COMMENT '客户端IP配置',\\n `mergeSlashes` tinyint(1) unsigned DEFAULT '0' COMMENT '是否合并路径中的斜杠',\\n `requestLimit` json DEFAULT NULL COMMENT '请求限制',\\n `requestScripts` json DEFAULT NULL COMMENT '请求脚本',\\n `uam` json DEFAULT NULL COMMENT 'UAM设置',\\n `referers` json DEFAULT NULL COMMENT '防盗链设置',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='HTTP Web'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"root\",\"definition\":\"json COMMENT '根目录'\"},{\"name\":\"charset\",\"definition\":\"json COMMENT '字符集'\"},{\"name\":\"shutdown\",\"definition\":\"json COMMENT '临时关闭页面配置'\"},{\"name\":\"pages\",\"definition\":\"json COMMENT '特殊页面'\"},{\"name\":\"redirectToHttps\",\"definition\":\"json COMMENT '跳转到HTTPS设置'\"},{\"name\":\"indexes\",\"definition\":\"json COMMENT '首页文件列表'\"},{\"name\":\"maxRequestBodySize\",\"definition\":\"json COMMENT '最大允许的请求内容尺寸'\"},{\"name\":\"requestHeader\",\"definition\":\"json COMMENT '请求Header配置'\"},{\"name\":\"responseHeader\",\"definition\":\"json COMMENT '响应Header配置'\"},{\"name\":\"accessLog\",\"definition\":\"json COMMENT '访问日志配置'\"},{\"name\":\"stat\",\"definition\":\"json COMMENT '统计配置'\"},{\"name\":\"gzip\",\"definition\":\"json COMMENT 'Gzip配置v0.3.2弃用)'\"},{\"name\":\"compression\",\"definition\":\"json COMMENT '压缩配置'\"},{\"name\":\"cache\",\"definition\":\"json COMMENT '缓存配置'\"},{\"name\":\"firewall\",\"definition\":\"json COMMENT '防火墙设置'\"},{\"name\":\"locations\",\"definition\":\"json COMMENT '路由规则配置'\"},{\"name\":\"websocket\",\"definition\":\"json COMMENT 'Websocket设置'\"},{\"name\":\"rewriteRules\",\"definition\":\"json COMMENT '重写规则配置'\"},{\"name\":\"hostRedirects\",\"definition\":\"json COMMENT '域名跳转'\"},{\"name\":\"fastcgi\",\"definition\":\"json COMMENT 'Fastcgi配置'\"},{\"name\":\"auth\",\"definition\":\"json COMMENT '认证策略配置'\"},{\"name\":\"webp\",\"definition\":\"json COMMENT 'WebP配置'\"},{\"name\":\"remoteAddr\",\"definition\":\"json COMMENT '客户端IP配置'\"},{\"name\":\"mergeSlashes\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否合并路径中的斜杠'\"},{\"name\":\"requestLimit\",\"definition\":\"json COMMENT '请求限制'\"},{\"name\":\"requestScripts\",\"definition\":\"json COMMENT '请求脚本'\"},{\"name\":\"uam\",\"definition\":\"json COMMENT 'UAM设置'\"},{\"name\":\"referers\",\"definition\":\"json COMMENT '防盗链设置'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeHTTPWebsockets\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeHTTPWebsockets` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `handshakeTimeout` json DEFAULT NULL COMMENT '握手超时时间',\\n `allowAllOrigins` tinyint(1) unsigned DEFAULT '1' COMMENT '是否支持所有源',\\n `allowedOrigins` json DEFAULT NULL COMMENT '支持的源域名列表',\\n `requestSameOrigin` tinyint(1) unsigned DEFAULT '1' COMMENT '是否请求一样的Origin',\\n `requestOrigin` varchar(255) DEFAULT NULL COMMENT '请求Origin',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Websocket设置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"handshakeTimeout\",\"definition\":\"json COMMENT '握手超时时间'\"},{\"name\":\"allowAllOrigins\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否支持所有源'\"},{\"name\":\"allowedOrigins\",\"definition\":\"json COMMENT '支持的源域名列表'\"},{\"name\":\"requestSameOrigin\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否请求一样的Origin'\"},{\"name\":\"requestOrigin\",\"definition\":\"varchar(255) COMMENT '请求Origin'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeIPItems\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeIPItems` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `listId` int(11) unsigned DEFAULT '0' COMMENT '所属名单ID',\\n `type` varchar(64) DEFAULT 'ipv4' COMMENT '类型',\\n `ipFrom` varchar(64) DEFAULT NULL COMMENT '开始IP',\\n `ipTo` varchar(64) DEFAULT NULL COMMENT '结束IP',\\n `ipFromLong` bigint(20) unsigned DEFAULT '0' COMMENT '开始IP整型',\\n `ipToLong` bigint(20) unsigned DEFAULT '0' COMMENT '结束IP整型',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `reason` varchar(255) DEFAULT NULL COMMENT '加入说明',\\n `eventLevel` varchar(64) DEFAULT NULL COMMENT '事件级别',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `expiredAt` bigint(11) unsigned DEFAULT '0' COMMENT '过期时间',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '有效范围服务ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '有效范围节点ID',\\n `sourceNodeId` int(11) unsigned DEFAULT '0' COMMENT '来源节点ID',\\n `sourceServerId` int(11) unsigned DEFAULT '0' COMMENT '来源服务ID',\\n `sourceHTTPFirewallPolicyId` int(11) unsigned DEFAULT '0' COMMENT '来源策略ID',\\n `sourceHTTPFirewallRuleGroupId` int(11) unsigned DEFAULT '0' COMMENT '来源规则集分组ID',\\n `sourceHTTPFirewallRuleSetId` int(11) unsigned DEFAULT '0' COMMENT '来源规则集ID',\\n `isRead` tinyint(1) unsigned DEFAULT '1' COMMENT '是否已读',\\n PRIMARY KEY (`id`),\\n KEY `listId` (`listId`),\\n KEY `version_expiredAt` (`version`,`expiredAt`) USING BTREE,\\n KEY `ipFrom` (`ipFrom`),\\n KEY `serverId` (`serverId`),\\n KEY `expiredAt_state` (`expiredAt`,`state`) USING BTREE,\\n KEY `isRead` (`expiredAt`,`isRead`) USING BTREE,\\n KEY `createdAt` (`createdAt`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"listId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '所属名单ID'\"},{\"name\":\"type\",\"definition\":\"varchar(64) DEFAULT 'ipv4' COMMENT '类型'\"},{\"name\":\"ipFrom\",\"definition\":\"varchar(64) COMMENT '开始IP'\"},{\"name\":\"ipTo\",\"definition\":\"varchar(64) COMMENT '结束IP'\"},{\"name\":\"ipFromLong\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '开始IP整型'\"},{\"name\":\"ipToLong\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '结束IP整型'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"reason\",\"definition\":\"varchar(255) COMMENT '加入说明'\"},{\"name\":\"eventLevel\",\"definition\":\"varchar(64) COMMENT '事件级别'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"expiredAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '过期时间'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '有效范围服务ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '有效范围节点ID'\"},{\"name\":\"sourceNodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '来源节点ID'\"},{\"name\":\"sourceServerId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '来源服务ID'\"},{\"name\":\"sourceHTTPFirewallPolicyId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '来源策略ID'\"},{\"name\":\"sourceHTTPFirewallRuleGroupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '来源规则集分组ID'\"},{\"name\":\"sourceHTTPFirewallRuleSetId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '来源规则集ID'\"},{\"name\":\"isRead\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否已读'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"listId\",\"definition\":\"KEY `listId` (`listId`) USING BTREE\"},{\"name\":\"version_expiredAt\",\"definition\":\"KEY `version_expiredAt` (`version`,`expiredAt`) USING BTREE\"},{\"name\":\"ipFrom\",\"definition\":\"KEY `ipFrom` (`ipFrom`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"expiredAt_state\",\"definition\":\"KEY `expiredAt_state` (`expiredAt`,`state`) USING BTREE\"},{\"name\":\"isRead\",\"definition\":\"KEY `isRead` (`expiredAt`,`isRead`) USING BTREE\"},{\"name\":\"createdAt\",\"definition\":\"KEY `createdAt` (`createdAt`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeIPLibraries\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeIPLibraries` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `fileId` int(11) unsigned DEFAULT '0' COMMENT '文件ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '类型',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `isPublic` tinyint(1) unsigned DEFAULT '0' COMMENT '是否公用',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`),\\n KEY `type` (`type`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP库'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"fileId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '文件ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '类型'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"isPublic\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否公用'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`type`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeIPLibraryArtifacts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeIPLibraryArtifacts` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `fileId` bigint(11) unsigned DEFAULT '0' COMMENT '文件ID',\\n `libraryFileId` int(11) unsigned DEFAULT '0' COMMENT 'IP库文件ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `meta` json DEFAULT NULL COMMENT '元数据',\\n `isPublic` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为公用',\\n `code` varchar(32) DEFAULT NULL COMMENT '代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `isPublic` (`isPublic`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP库制品'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"fileId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '文件ID'\"},{\"name\":\"libraryFileId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'IP库文件ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"meta\",\"definition\":\"json COMMENT '元数据'\"},{\"name\":\"isPublic\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为公用'\"},{\"name\":\"code\",\"definition\":\"varchar(32) COMMENT '代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"isPublic\",\"definition\":\"KEY `isPublic` (`isPublic`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeIPLibraryFiles\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeIPLibraryFiles` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT 'IP库名称',\\n `fileId` bigint(11) unsigned DEFAULT '0' COMMENT '原始文件ID',\\n `template` varchar(512) DEFAULT NULL COMMENT '模板',\\n `emptyValues` json DEFAULT NULL COMMENT '空值列表',\\n `generatedFileId` bigint(11) unsigned DEFAULT '0' COMMENT '生成的文件ID',\\n `generatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '生成时间',\\n `isFinished` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已经完成',\\n `countries` json DEFAULT NULL COMMENT '国家/地区',\\n `provinces` json DEFAULT NULL COMMENT '省份',\\n `cities` json DEFAULT NULL COMMENT '城市',\\n `towns` json DEFAULT NULL COMMENT '区县',\\n `providers` json DEFAULT NULL COMMENT 'ISP服务商',\\n `code` varchar(64) DEFAULT NULL COMMENT '文件代号',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '上传时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP库上传的文件'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT 'IP库名称'\"},{\"name\":\"fileId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '原始文件ID'\"},{\"name\":\"template\",\"definition\":\"varchar(512) COMMENT '模板'\"},{\"name\":\"emptyValues\",\"definition\":\"json COMMENT '空值列表'\"},{\"name\":\"generatedFileId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '生成的文件ID'\"},{\"name\":\"generatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '生成时间'\"},{\"name\":\"isFinished\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已经完成'\"},{\"name\":\"countries\",\"definition\":\"json COMMENT '国家/地区'\"},{\"name\":\"provinces\",\"definition\":\"json COMMENT '省份'\"},{\"name\":\"cities\",\"definition\":\"json COMMENT '城市'\"},{\"name\":\"towns\",\"definition\":\"json COMMENT '区县'\"},{\"name\":\"providers\",\"definition\":\"json COMMENT 'ISP服务商'\"},{\"name\":\"code\",\"definition\":\"varchar(64) COMMENT '文件代号'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '上传时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeIPLists\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeIPLists` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `type` varchar(255) DEFAULT NULL COMMENT '类型',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '列表名',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `timeout` json DEFAULT NULL COMMENT '默认超时时间',\\n `actions` json DEFAULT NULL COMMENT 'IP触发的动作',\\n `description` varchar(512) DEFAULT NULL COMMENT '描述',\\n `isPublic` tinyint(1) unsigned DEFAULT '0' COMMENT '是否公用',\\n `isGlobal` tinyint(1) unsigned DEFAULT '0' COMMENT '是否全局',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `type` (`type`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP名单'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '类型'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '列表名'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"timeout\",\"definition\":\"json COMMENT '默认超时时间'\"},{\"name\":\"actions\",\"definition\":\"json COMMENT 'IP触发的动作'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '描述'\"},{\"name\":\"isPublic\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否公用'\"},{\"name\":\"isGlobal\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否全局'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`type`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeLatestItems\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeLatestItems` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `itemType` varchar(255) DEFAULT NULL COMMENT 'Item类型',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT 'itemID',\\n `count` bigint(11) unsigned DEFAULT '0' COMMENT '数量',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '更新时间',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `item` (`itemType`,`itemId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='最近的条目统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"itemType\",\"definition\":\"varchar(255) COMMENT 'Item类型'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT 'itemID'\"},{\"name\":\"count\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '更新时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"item\",\"definition\":\"UNIQUE KEY `item` (`itemType`,`itemId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeLogins\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeLogins` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `type` varchar(255) DEFAULT NULL COMMENT '认证方式',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `adminId_type` (`adminId`,`type`) USING BTREE,\\n KEY `user_type` (`userId`,`type`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='第三方登录认证'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '认证方式'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"adminId_type\",\"definition\":\"KEY `adminId_type` (`adminId`,`type`) USING BTREE\"},{\"name\":\"user_type\",\"definition\":\"KEY `user_type` (`userId`,`type`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeLogs` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `level` varchar(32) DEFAULT NULL COMMENT '级别',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `action` varchar(255) DEFAULT NULL COMMENT '动作',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `providerId` int(11) unsigned DEFAULT '0' COMMENT '供应商ID',\\n `ip` varchar(32) DEFAULT NULL COMMENT 'IP地址',\\n `type` varchar(255) DEFAULT 'admin' COMMENT '类型admin, user',\\n `day` varchar(10) DEFAULT NULL COMMENT '日期',\\n `billId` int(11) unsigned DEFAULT '0' COMMENT '账单ID',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `adminid` (`adminId`),\\n KEY `day` (`day`),\\n KEY `billId` (`billId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='操作日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"level\",\"definition\":\"varchar(32) COMMENT '级别'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"action\",\"definition\":\"varchar(255) COMMENT '动作'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"providerId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '供应商ID'\"},{\"name\":\"ip\",\"definition\":\"varchar(32) COMMENT 'IP地址'\"},{\"name\":\"type\",\"definition\":\"varchar(255) DEFAULT 'admin' COMMENT '类型admin, user'\"},{\"name\":\"day\",\"definition\":\"varchar(10) COMMENT '日期'\"},{\"name\":\"billId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '账单ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"adminid\",\"definition\":\"KEY `adminid` (`adminId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"billId\",\"definition\":\"KEY `billId` (`billId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageMediaInstances\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageMediaInstances` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `mediaType` varchar(255) DEFAULT NULL COMMENT '媒介类型',\\n `params` json DEFAULT NULL COMMENT '媒介参数',\\n `description` varchar(512) DEFAULT NULL COMMENT '备注',\\n `rate` json DEFAULT NULL COMMENT '发送频率',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `hashLife` int(11) DEFAULT '0' COMMENT 'HASH有效期',\\n PRIMARY KEY (`id`),\\n KEY `mediaType` (`mediaType`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息媒介接收人'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"mediaType\",\"definition\":\"varchar(255) COMMENT '媒介类型'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '媒介参数'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '备注'\"},{\"name\":\"rate\",\"definition\":\"json COMMENT '发送频率'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"hashLife\",\"definition\":\"int(11) DEFAULT '0' COMMENT 'HASH有效期'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"mediaType\",\"definition\":\"KEY `mediaType` (`mediaType`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageMedias\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageMedias` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `type` varchar(255) DEFAULT NULL COMMENT '类型',\\n `description` varchar(512) DEFAULT NULL COMMENT '描述',\\n `userDescription` varchar(512) DEFAULT NULL COMMENT '用户描述',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `type` (`type`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息媒介'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '类型'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '描述'\"},{\"name\":\"userDescription\",\"definition\":\"varchar(512) COMMENT '用户描述'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"UNIQUE KEY `type` (`type`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageReceivers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageReceivers` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '节点角色',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '类型',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `recipientId` int(11) unsigned DEFAULT '0' COMMENT '接收人ID',\\n `recipientGroupId` int(11) unsigned DEFAULT '0' COMMENT '接收人分组ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `serverId` (`serverId`),\\n KEY `type` (`type`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息通知接收人'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '节点角色'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '类型'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"recipientId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '接收人ID'\"},{\"name\":\"recipientGroupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '接收人分组ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`type`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageRecipientGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageRecipientGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '分组名',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息接收人分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '分组名'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageRecipients\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageRecipients` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `instanceId` int(11) unsigned DEFAULT '0' COMMENT '实例ID',\\n `user` varchar(1024) DEFAULT NULL COMMENT '接收人信息',\\n `groupIds` json DEFAULT NULL COMMENT '分组ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `timeFrom` time DEFAULT NULL COMMENT '开始时间',\\n `timeTo` time DEFAULT NULL COMMENT '结束时间',\\n `description` varchar(512) DEFAULT NULL COMMENT '备注',\\n PRIMARY KEY (`id`),\\n KEY `adminId` (`adminId`),\\n KEY `timeFrom_timeTo` (`timeFrom`,`timeTo`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息媒介接收人'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"instanceId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '实例ID'\"},{\"name\":\"user\",\"definition\":\"varchar(1024) COMMENT '接收人信息'\"},{\"name\":\"groupIds\",\"definition\":\"json COMMENT '分组ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"timeFrom\",\"definition\":\"time COMMENT '开始时间'\"},{\"name\":\"timeTo\",\"definition\":\"time COMMENT '结束时间'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '备注'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"adminId\",\"definition\":\"KEY `adminId` (`adminId`) USING BTREE\"},{\"name\":\"timeFrom_timeTo\",\"definition\":\"KEY `timeFrom_timeTo` (`timeFrom`,`timeTo`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageTaskLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageTaskLogs` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `taskId` bigint(20) unsigned DEFAULT '0' COMMENT '任务ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `isOk` tinyint(1) unsigned DEFAULT '0' COMMENT '是否成功',\\n `error` varchar(1024) DEFAULT NULL COMMENT '错误信息',\\n `response` varchar(1024) DEFAULT NULL COMMENT '响应信息',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n KEY `day` (`day`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息发送日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"taskId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '任务ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"isOk\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否成功'\"},{\"name\":\"error\",\"definition\":\"varchar(1024) COMMENT '错误信息'\"},{\"name\":\"response\",\"definition\":\"varchar(1024) COMMENT '响应信息'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessageTasks\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessageTasks` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `recipientId` int(11) unsigned DEFAULT '0' COMMENT '接收人ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'SUM标识',\\n `instanceId` int(11) unsigned DEFAULT '0' COMMENT '媒介实例ID',\\n `user` varchar(255) DEFAULT NULL COMMENT '接收用户标识',\\n `subject` varchar(255) DEFAULT NULL COMMENT '标题',\\n `body` varchar(1024) DEFAULT NULL COMMENT '内容',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `status` tinyint(1) unsigned DEFAULT '0' COMMENT '发送状态',\\n `sentAt` bigint(11) unsigned DEFAULT '0' COMMENT '最后一次发送时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `result` json DEFAULT NULL COMMENT '结果',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `isPrimary` tinyint(1) unsigned DEFAULT '0' COMMENT '是否优先',\\n PRIMARY KEY (`id`),\\n KEY `status` (`status`),\\n KEY `day` (`day`),\\n KEY `hash` (`hash`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息发送相关任务'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"recipientId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '接收人ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'SUM标识'\"},{\"name\":\"instanceId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '媒介实例ID'\"},{\"name\":\"user\",\"definition\":\"varchar(255) COMMENT '接收用户标识'\"},{\"name\":\"subject\",\"definition\":\"varchar(255) COMMENT '标题'\"},{\"name\":\"body\",\"definition\":\"varchar(1024) COMMENT '内容'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"status\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '发送状态'\"},{\"name\":\"sentAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '最后一次发送时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"result\",\"definition\":\"json COMMENT '结果'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"isPrimary\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否优先'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"status\",\"definition\":\"KEY `status` (`status`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"KEY `hash` (`hash`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMessages\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMessages` (\\n `id` bigint(16) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '角色',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `level` varchar(32) DEFAULT NULL COMMENT '级别',\\n `subject` varchar(255) DEFAULT NULL COMMENT '标题',\\n `body` varchar(2048) DEFAULT NULL,\\n `type` varchar(128) DEFAULT NULL COMMENT '消息类型',\\n `params` json DEFAULT NULL COMMENT '额外的参数',\\n `isRead` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已读',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `hash` varchar(32) DEFAULT NULL COMMENT '消息内容的Hash',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `day` (`day`),\\n KEY `hash` (`hash`),\\n KEY `userId` (`userId`),\\n KEY `adminId` (`adminId`),\\n KEY `isRead` (`isRead`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='消息通知'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(16) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '角色'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"level\",\"definition\":\"varchar(32) COMMENT '级别'\"},{\"name\":\"subject\",\"definition\":\"varchar(255) COMMENT '标题'\"},{\"name\":\"body\",\"definition\":\"varchar(2048)\"},{\"name\":\"type\",\"definition\":\"varchar(128) COMMENT '消息类型'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '额外的参数'\"},{\"name\":\"isRead\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已读'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT '消息内容的Hash'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"adminId\",\"definition\":\"KEY `adminId` (`adminId`) USING BTREE\"},{\"name\":\"isRead\",\"definition\":\"KEY `isRead` (`isRead`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricCharts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricCharts` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `itemId` int(11) unsigned DEFAULT '0' COMMENT '指标ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `code` varchar(128) DEFAULT NULL COMMENT '代号',\\n `type` varchar(32) DEFAULT NULL COMMENT '图形类型',\\n `widthDiv` int(11) DEFAULT NULL COMMENT '宽度划分',\\n `params` json DEFAULT NULL COMMENT '图形参数',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `maxItems` int(11) unsigned DEFAULT '0' COMMENT '最多条目',\\n `ignoreEmptyKeys` tinyint(1) unsigned DEFAULT '1' COMMENT '忽略空的键值',\\n `ignoredKeys` json DEFAULT NULL COMMENT '忽略键值',\\n PRIMARY KEY (`id`),\\n KEY `itemId` (`itemId`),\\n KEY `code` (`code`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标图表'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"itemId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '指标ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"code\",\"definition\":\"varchar(128) COMMENT '代号'\"},{\"name\":\"type\",\"definition\":\"varchar(32) COMMENT '图形类型'\"},{\"name\":\"widthDiv\",\"definition\":\"int(11) COMMENT '宽度划分'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '图形参数'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"maxItems\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最多条目'\"},{\"name\":\"ignoreEmptyKeys\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '忽略空的键值'\"},{\"name\":\"ignoredKeys\",\"definition\":\"json COMMENT '忽略键值'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"KEY `code` (`code`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricItems\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricItems` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `code` varchar(128) DEFAULT NULL COMMENT '代号(用来区分是否内置)',\\n `category` varchar(32) DEFAULT NULL COMMENT '类型比如http, tcp等',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '指标名称',\\n `keys` json DEFAULT NULL COMMENT '统计的Key',\\n `period` int(11) unsigned DEFAULT '0' COMMENT '周期',\\n `periodUnit` varchar(32) DEFAULT NULL COMMENT '周期单位',\\n `expiresPeriod` int(11) unsigned DEFAULT '0' COMMENT '过期周期',\\n `value` varchar(512) DEFAULT NULL COMMENT '值运算',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `isPublic` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为公用',\\n `lastTime` varchar(14) DEFAULT NULL COMMENT '最新时间',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `category` (`category`),\\n KEY `code` (`code`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标定义'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"code\",\"definition\":\"varchar(128) COMMENT '代号(用来区分是否内置)'\"},{\"name\":\"category\",\"definition\":\"varchar(32) COMMENT '类型比如http, tcp等'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '指标名称'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '统计的Key'\"},{\"name\":\"period\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '周期'\"},{\"name\":\"periodUnit\",\"definition\":\"varchar(32) COMMENT '周期单位'\"},{\"name\":\"expiresPeriod\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '过期周期'\"},{\"name\":\"value\",\"definition\":\"varchar(512) COMMENT '值运算'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"isPublic\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为公用'\"},{\"name\":\"lastTime\",\"definition\":\"varchar(14) COMMENT '最新时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"category\",\"definition\":\"KEY `category` (`category`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"KEY `code` (`code`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_0\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_0` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_1\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_1` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_10\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_10` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_11\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_11` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_12\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_12` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_13\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_13` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_14\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_14` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_15\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_15` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_16\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_16` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_17\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_17` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_18\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_18` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_19\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_19` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_2\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_2` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_3\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_3` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_4\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_4` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_5\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_5` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_6\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_6` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_7\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_7` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_8\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_8` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricStats_9\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricStats_9` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT 'Hash值',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `keys` json DEFAULT NULL COMMENT '键值',\\n `value` decimal(20,2) DEFAULT '0.00' COMMENT '数值',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `createdDay` (`createdDay`),\\n KEY `itemId` (`itemId`) USING BTREE,\\n KEY `item_time` (`itemId`,`time`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`),\\n KEY `server_item_time` (`serverId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT 'Hash值'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"keys\",\"definition\":\"json COMMENT '键值'\"},{\"name\":\"value\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '数值'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"UNIQUE KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"},{\"name\":\"item_time\",\"definition\":\"KEY `item_time` (`itemId`,`time`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_0\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_0` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_1\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_1` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_10\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_10` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_11\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_11` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_12\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_12` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_13\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_13` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_14\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_14` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_15\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_15` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_16\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_16` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_17\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_17` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_18\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_18` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_19\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_19` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_2\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_2` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_3\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_3` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_4\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_4` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_5\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_5` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_6\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_6` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_7\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_7` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_8\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_8` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMetricSumStats_9\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMetricSumStats_9` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n `total` decimal(20,2) DEFAULT '0.00' COMMENT '总和',\\n `time` varchar(14) DEFAULT NULL COMMENT '分钟值YYYYMMDDHHII',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期YYYYMMDD',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE,\\n KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`),\\n KEY `createdDay` (`createdDay`),\\n KEY `cluster_item_time` (`clusterId`,`itemId`,`time`),\\n KEY `node_item_time` (`nodeId`,`itemId`,`time`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='指标统计总和数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"total\",\"definition\":\"decimal(20,2) DEFAULT '0.00' COMMENT '总和'\"},{\"name\":\"time\",\"definition\":\"varchar(14) COMMENT '分钟值YYYYMMDDHHII'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期YYYYMMDD'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_server_item_time_version\",\"definition\":\"UNIQUE KEY `node_server_item_time_version` (`nodeId`,`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"server_item_time\",\"definition\":\"KEY `server_item_time` (`serverId`,`itemId`,`time`,`version`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"},{\"name\":\"cluster_item_time\",\"definition\":\"KEY `cluster_item_time` (`clusterId`,`itemId`,`time`) USING BTREE\"},{\"name\":\"node_item_time\",\"definition\":\"KEY `node_item_time` (`nodeId`,`itemId`,`time`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeMonitorNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeMonitorNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `status` json DEFAULT NULL COMMENT '运行状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='监控节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '运行状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSAccessLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSAccessLogs` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `domainId` int(11) unsigned DEFAULT '0' COMMENT '域名ID',\\n `recordId` int(11) unsigned DEFAULT '0' COMMENT '记录ID',\\n `content` json DEFAULT NULL COMMENT '访问数据',\\n `requestId` varchar(128) DEFAULT NULL COMMENT '请求ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `remoteAddr` varchar(128) DEFAULT NULL COMMENT 'IP',\\n PRIMARY KEY (`id`),\\n KEY `nodeId` (`nodeId`),\\n KEY `domainId` (`domainId`),\\n KEY `recordId` (`recordId`),\\n KEY `requestId` (`requestId`),\\n KEY `remoteAddr` (`remoteAddr`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='域名服务访问日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"domainId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"recordId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '记录ID'\"},{\"name\":\"content\",\"definition\":\"json COMMENT '访问数据'\"},{\"name\":\"requestId\",\"definition\":\"varchar(128) COMMENT '请求ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"remoteAddr\",\"definition\":\"varchar(128) COMMENT 'IP'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"domainId\",\"definition\":\"KEY `domainId` (`domainId`) USING BTREE\"},{\"name\":\"recordId\",\"definition\":\"KEY `recordId` (`recordId`) USING BTREE\"},{\"name\":\"requestId\",\"definition\":\"KEY `requestId` (`requestId`) USING BTREE\"},{\"name\":\"remoteAddr\",\"definition\":\"KEY `remoteAddr` (`remoteAddr`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSClusters\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSClusters` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '集群名',\\n `installDir` varchar(512) DEFAULT NULL COMMENT '安装目录',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `accessLog` json DEFAULT NULL COMMENT '访问日志配置',\\n `grantId` int(11) unsigned DEFAULT '0' COMMENT '授权ID',\\n `recursion` json DEFAULT NULL COMMENT '递归DNS设置',\\n `tcp` json DEFAULT NULL COMMENT 'TCP设置',\\n `tls` json DEFAULT NULL COMMENT 'TLS设置',\\n `udp` json DEFAULT NULL COMMENT 'UDP设置',\\n `ddosProtection` json DEFAULT NULL COMMENT 'DDoS防护设置',\\n `hosts` json DEFAULT NULL COMMENT 'DNS主机地址',\\n `soa` json DEFAULT NULL COMMENT 'SOA配置',\\n `autoRemoteStart` tinyint(1) unsigned DEFAULT '1' COMMENT '自动远程启动',\\n `timeZone` varchar(64) DEFAULT NULL COMMENT '时区',\\n `answer` json DEFAULT NULL COMMENT '应答设置',\\n `soaSerial` bigint(11) unsigned DEFAULT '0' COMMENT 'SOA序列号',\\n `email` varchar(255) DEFAULT NULL COMMENT '管理员邮箱',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='域名服务器集群'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '集群名'\"},{\"name\":\"installDir\",\"definition\":\"varchar(512) COMMENT '安装目录'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"accessLog\",\"definition\":\"json COMMENT '访问日志配置'\"},{\"name\":\"grantId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '授权ID'\"},{\"name\":\"recursion\",\"definition\":\"json COMMENT '递归DNS设置'\"},{\"name\":\"tcp\",\"definition\":\"json COMMENT 'TCP设置'\"},{\"name\":\"tls\",\"definition\":\"json COMMENT 'TLS设置'\"},{\"name\":\"udp\",\"definition\":\"json COMMENT 'UDP设置'\"},{\"name\":\"ddosProtection\",\"definition\":\"json COMMENT 'DDoS防护设置'\"},{\"name\":\"hosts\",\"definition\":\"json COMMENT 'DNS主机地址'\"},{\"name\":\"soa\",\"definition\":\"json COMMENT 'SOA配置'\"},{\"name\":\"autoRemoteStart\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '自动远程启动'\"},{\"name\":\"timeZone\",\"definition\":\"varchar(64) COMMENT '时区'\"},{\"name\":\"answer\",\"definition\":\"json COMMENT '应答设置'\"},{\"name\":\"soaSerial\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT 'SOA序列号'\"},{\"name\":\"email\",\"definition\":\"varchar(255) COMMENT '管理员邮箱'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSDomainGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSDomainGroups` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '分组名称',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='域名分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '分组名称'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSDomains\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSDomains` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '域名',\\n `groupIds` json DEFAULT NULL COMMENT '分组ID',\\n `tsig` json DEFAULT NULL COMMENT 'TSIG配置',\\n `verifyTXT` varchar(64) DEFAULT NULL COMMENT '验证用的TXT',\\n `verifyExpiresAt` bigint(11) unsigned DEFAULT '0' COMMENT '验证TXT过期时间',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本号',\\n `status` varchar(64) DEFAULT 'none' COMMENT '状态none|verified',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `name` (`name`),\\n KEY `version` (`version`) USING BTREE,\\n KEY `status` (`status`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DNS域名'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"groupIds\",\"definition\":\"json COMMENT '分组ID'\"},{\"name\":\"tsig\",\"definition\":\"json COMMENT 'TSIG配置'\"},{\"name\":\"verifyTXT\",\"definition\":\"varchar(64) COMMENT '验证用的TXT'\"},{\"name\":\"verifyExpiresAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '验证TXT过期时间'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"status\",\"definition\":\"varchar(64) DEFAULT 'none' COMMENT '状态none|verified'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"name\",\"definition\":\"KEY `name` (`name`) USING BTREE\"},{\"name\":\"version\",\"definition\":\"KEY `version` (`version`) USING BTREE\"},{\"name\":\"status\",\"definition\":\"KEY `status` (`status`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSKeys\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSKeys` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `domainId` bigint(20) unsigned DEFAULT '0' COMMENT '域名ID',\\n `zoneId` bigint(20) unsigned DEFAULT '0' COMMENT '子域ID',\\n `algo` varchar(64) DEFAULT NULL COMMENT '算法',\\n `secret` varchar(4096) DEFAULT NULL COMMENT '密码',\\n `secretType` varchar(32) DEFAULT NULL COMMENT '密码类型',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `zoneId` (`zoneId`),\\n KEY `domainId` (`domainId`),\\n KEY `version` (`version`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='密钥管理'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"domainId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"zoneId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '子域ID'\"},{\"name\":\"algo\",\"definition\":\"varchar(64) COMMENT '算法'\"},{\"name\":\"secret\",\"definition\":\"varchar(4096) COMMENT '密码'\"},{\"name\":\"secretType\",\"definition\":\"varchar(32) COMMENT '密码类型'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"zoneId\",\"definition\":\"KEY `zoneId` (`zoneId`) USING BTREE\"},{\"name\":\"domainId\",\"definition\":\"KEY `domainId` (`domainId`) USING BTREE\"},{\"name\":\"version\",\"definition\":\"KEY `version` (`version`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '节点名称',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `status` json DEFAULT NULL COMMENT '运行状态',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '节点ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `isUp` tinyint(1) unsigned DEFAULT '1' COMMENT '是否运行',\\n `isInstalled` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已安装',\\n `installStatus` json DEFAULT NULL COMMENT '安装状态',\\n `installDir` varchar(512) DEFAULT NULL COMMENT '安装目录',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `isActive` tinyint(1) unsigned DEFAULT '1' COMMENT '是否活跃',\\n `statusIsNotified` tinyint(1) unsigned DEFAULT '1' COMMENT '活跃状态已经通知',\\n `inactiveNotifiedAt` bigint(11) unsigned DEFAULT '0' COMMENT '离线通知时间',\\n `connectedAPINodes` json DEFAULT NULL COMMENT '当前连接的API节点',\\n `ddosProtection` json DEFAULT NULL COMMENT 'DDoS防护设置',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='域名服务器节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '节点名称'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '运行状态'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '节点ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"isUp\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否运行'\"},{\"name\":\"isInstalled\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已安装'\"},{\"name\":\"installStatus\",\"definition\":\"json COMMENT '安装状态'\"},{\"name\":\"installDir\",\"definition\":\"varchar(512) COMMENT '安装目录'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"isActive\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否活跃'\"},{\"name\":\"statusIsNotified\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '活跃状态已经通知'\"},{\"name\":\"inactiveNotifiedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '离线通知时间'\"},{\"name\":\"connectedAPINodes\",\"definition\":\"json COMMENT '当前连接的API节点'\"},{\"name\":\"ddosProtection\",\"definition\":\"json COMMENT 'DDoS防护设置'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSPlans\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSPlans` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '套餐名称',\\n `isOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用',\\n `monthlyPrice` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '月价格',\\n `yearlyPrice` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '年价格',\\n `config` json DEFAULT NULL COMMENT '配置',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='NS套餐'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '套餐名称'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用'\"},{\"name\":\"monthlyPrice\",\"definition\":\"decimal(10,2) unsigned DEFAULT '0.00' COMMENT '月价格'\"},{\"name\":\"yearlyPrice\",\"definition\":\"decimal(10,2) unsigned DEFAULT '0.00' COMMENT '年价格'\"},{\"name\":\"config\",\"definition\":\"json COMMENT '配置'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSQuestionOptions\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSQuestionOptions` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(128) DEFAULT NULL COMMENT '选项名',\\n `values` json DEFAULT NULL COMMENT '选项值',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DNS请求选项'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(128) COMMENT '选项名'\"},{\"name\":\"values\",\"definition\":\"json COMMENT '选项值'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSRecordHourlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSRecordHourlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(110) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `domainId` bigint(11) unsigned DEFAULT '0' COMMENT '域名ID',\\n `recordId` bigint(11) unsigned DEFAULT '0' COMMENT '记录ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `countRequests` bigint(11) unsigned DEFAULT '0' COMMENT '请求数',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_record_hour` (`nodeId`,`recordId`,`hour`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `hour` (`hour`),\\n KEY `domainId` (`domainId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='NS记录统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(110) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"domainId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"recordId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '记录ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_record_hour\",\"definition\":\"UNIQUE KEY `node_record_hour` (`nodeId`,`recordId`,`hour`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"},{\"name\":\"domainId\",\"definition\":\"KEY `domainId` (`domainId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSRecords\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSRecords` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `domainId` int(11) unsigned DEFAULT '0' COMMENT '域名ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `description` varchar(512) DEFAULT NULL COMMENT '备注',\\n `name` varchar(255) DEFAULT NULL COMMENT '记录名',\\n `type` varchar(32) DEFAULT NULL COMMENT '类型',\\n `value` varchar(4096) DEFAULT NULL COMMENT '值',\\n `ttl` int(11) unsigned DEFAULT '0' COMMENT 'TTL',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `routeIds` json DEFAULT NULL COMMENT '线路',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `domainId` (`domainId`),\\n KEY `version` (`version`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DNS记录'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"domainId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '备注'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '记录名'\"},{\"name\":\"type\",\"definition\":\"varchar(32) COMMENT '类型'\"},{\"name\":\"value\",\"definition\":\"varchar(4096) COMMENT '值'\"},{\"name\":\"ttl\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'TTL'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"routeIds\",\"definition\":\"json COMMENT '线路'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domainId\",\"definition\":\"KEY `domainId` (`domainId`) USING BTREE\"},{\"name\":\"version\",\"definition\":\"KEY `version` (`version`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSRoutes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSRoutes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `domainId` int(11) unsigned DEFAULT '0' COMMENT '域名ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `ranges` json DEFAULT NULL COMMENT '范围',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本号',\\n `code` varchar(128) DEFAULT NULL COMMENT '代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`),\\n KEY `domainId` (`domainId`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DNS线路'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"domainId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"ranges\",\"definition\":\"json COMMENT '范围'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"code\",\"definition\":\"varchar(128) COMMENT '代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"domainId\",\"definition\":\"KEY `domainId` (`domainId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSUserPlans\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSUserPlans` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `planId` int(11) unsigned DEFAULT '0' COMMENT '套餐ID',\\n `dayFrom` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `dayTo` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `periodUnit` varchar(8) DEFAULT NULL COMMENT 'monthly|yearly',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `dayTo` (`dayTo`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户套餐'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"planId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '套餐ID'\"},{\"name\":\"dayFrom\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"dayTo\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"periodUnit\",\"definition\":\"varchar(8) COMMENT 'monthly|yearly'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"dayTo\",\"definition\":\"KEY `dayTo` (`dayTo`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNSZones\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNSZones` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `domainId` bigint(20) unsigned DEFAULT '0' COMMENT '域名ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本',\\n `tsig` json DEFAULT NULL COMMENT 'TSIG配置',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `domainId` (`domainId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='域名子域'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"domainId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本'\"},{\"name\":\"tsig\",\"definition\":\"json COMMENT 'TSIG配置'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domainId\",\"definition\":\"KEY `domainId` (`domainId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeClusterFirewallActions\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeClusterFirewallActions` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `eventLevel` varchar(255) DEFAULT NULL COMMENT '级别',\\n `type` varchar(64) DEFAULT NULL COMMENT '动作类型',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='防火墙动作'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"eventLevel\",\"definition\":\"varchar(255) COMMENT '级别'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '动作类型'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeClusterMetricItems\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeClusterMetricItems` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `itemId` bigint(20) unsigned DEFAULT '0' COMMENT '指标ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`),\\n KEY `itemId` (`itemId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='集群使用的指标'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"itemId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '指标ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"itemId\",\"definition\":\"KEY `itemId` (`itemId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeClusterTrafficDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeClusterTrafficDailyStats` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `bytes` bigint(20) unsigned DEFAULT NULL COMMENT '流量字节',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `cluster_day` (`clusterId`,`day`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='总的流量统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned COMMENT '流量字节'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"cluster_day\",\"definition\":\"UNIQUE KEY `cluster_day` (`clusterId`,`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeClusters\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeClusters` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `useAllAPINodes` tinyint(1) unsigned DEFAULT '1' COMMENT '是否使用所有API节点',\\n `apiNodes` json DEFAULT NULL COMMENT '使用的API节点',\\n `installDir` varchar(512) DEFAULT NULL COMMENT '安装目录',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `grantId` int(11) unsigned DEFAULT '0' COMMENT '默认认证方式',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `autoRegister` tinyint(1) unsigned DEFAULT '1' COMMENT '是否开启自动注册',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `healthCheck` json DEFAULT NULL COMMENT '健康检查',\\n `dnsName` varchar(255) DEFAULT NULL COMMENT 'DNS名称',\\n `dnsDomainId` int(11) unsigned DEFAULT '0' COMMENT '域名ID',\\n `dns` json DEFAULT NULL COMMENT 'DNS配置',\\n `toa` json DEFAULT NULL COMMENT 'TOA配置',\\n `cachePolicyId` int(11) unsigned DEFAULT '0' COMMENT '缓存策略ID',\\n `httpFirewallPolicyId` int(11) unsigned DEFAULT '0' COMMENT 'WAF策略ID',\\n `accessLog` json DEFAULT NULL COMMENT '访问日志设置',\\n `systemServices` json DEFAULT NULL COMMENT '系统服务设置',\\n `timeZone` varchar(64) DEFAULT NULL COMMENT '时区',\\n `nodeMaxThreads` int(11) unsigned DEFAULT '0' COMMENT '节点最大线程数',\\n `ddosProtection` json DEFAULT NULL COMMENT 'DDoS防护设置',\\n `autoOpenPorts` tinyint(1) unsigned DEFAULT '1' COMMENT '是否自动尝试开放端口',\\n `isPinned` tinyint(1) unsigned DEFAULT '0' COMMENT '是否置顶',\\n `webp` json DEFAULT NULL COMMENT 'WebP设置',\\n `uam` json DEFAULT NULL COMMENT 'UAM设置',\\n `clock` json DEFAULT NULL COMMENT '时钟配置',\\n `globalServerConfig` json DEFAULT NULL COMMENT '全局服务配置',\\n `autoRemoteStart` tinyint(1) unsigned DEFAULT '1' COMMENT '自动远程启动',\\n `autoInstallNftables` tinyint(1) unsigned DEFAULT '0' COMMENT '自动安装nftables',\\n PRIMARY KEY (`id`),\\n KEY `uniqueId` (`uniqueId`),\\n KEY `grantId` (`grantId`),\\n KEY `dnsDomainId` (`dnsDomainId`),\\n KEY `cachePolicyId` (`cachePolicyId`),\\n KEY `httpFirewallPolicyId` (`httpFirewallPolicyId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点集群'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"useAllAPINodes\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否使用所有API节点'\"},{\"name\":\"apiNodes\",\"definition\":\"json COMMENT '使用的API节点'\"},{\"name\":\"installDir\",\"definition\":\"varchar(512) COMMENT '安装目录'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"grantId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '默认认证方式'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"autoRegister\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否开启自动注册'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"healthCheck\",\"definition\":\"json COMMENT '健康检查'\"},{\"name\":\"dnsName\",\"definition\":\"varchar(255) COMMENT 'DNS名称'\"},{\"name\":\"dnsDomainId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '域名ID'\"},{\"name\":\"dns\",\"definition\":\"json COMMENT 'DNS配置'\"},{\"name\":\"toa\",\"definition\":\"json COMMENT 'TOA配置'\"},{\"name\":\"cachePolicyId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '缓存策略ID'\"},{\"name\":\"httpFirewallPolicyId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF策略ID'\"},{\"name\":\"accessLog\",\"definition\":\"json COMMENT '访问日志设置'\"},{\"name\":\"systemServices\",\"definition\":\"json COMMENT '系统服务设置'\"},{\"name\":\"timeZone\",\"definition\":\"varchar(64) COMMENT '时区'\"},{\"name\":\"nodeMaxThreads\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点最大线程数'\"},{\"name\":\"ddosProtection\",\"definition\":\"json COMMENT 'DDoS防护设置'\"},{\"name\":\"autoOpenPorts\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否自动尝试开放端口'\"},{\"name\":\"isPinned\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否置顶'\"},{\"name\":\"webp\",\"definition\":\"json COMMENT 'WebP设置'\"},{\"name\":\"uam\",\"definition\":\"json COMMENT 'UAM设置'\"},{\"name\":\"clock\",\"definition\":\"json COMMENT '时钟配置'\"},{\"name\":\"globalServerConfig\",\"definition\":\"json COMMENT '全局服务配置'\"},{\"name\":\"autoRemoteStart\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '自动远程启动'\"},{\"name\":\"autoInstallNftables\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '自动安装nftables'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"KEY `uniqueId` (`uniqueId`) USING BTREE\"},{\"name\":\"grantId\",\"definition\":\"KEY `grantId` (`grantId`) USING BTREE\"},{\"name\":\"dnsDomainId\",\"definition\":\"KEY `dnsDomainId` (`dnsDomainId`) USING BTREE\"},{\"name\":\"cachePolicyId\",\"definition\":\"KEY `cachePolicyId` (`cachePolicyId`) USING BTREE\"},{\"name\":\"httpFirewallPolicyId\",\"definition\":\"KEY `httpFirewallPolicyId` (`httpFirewallPolicyId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeGrants\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeGrants` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `method` varchar(64) DEFAULT NULL COMMENT '登录方式',\\n `username` varchar(255) DEFAULT NULL COMMENT '用户名',\\n `password` varchar(255) DEFAULT NULL COMMENT '密码',\\n `su` tinyint(1) unsigned DEFAULT '0' COMMENT '是否需要su',\\n `privateKey` varchar(4096) DEFAULT NULL COMMENT '私钥',\\n `passphrase` varchar(512) DEFAULT NULL COMMENT '私钥密码',\\n `description` varchar(255) DEFAULT NULL COMMENT '备注',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '专有节点',\\n `role` varchar(32) DEFAULT 'node' COMMENT '角色',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`),\\n KEY `nodeId` (`nodeId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点授权'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"method\",\"definition\":\"varchar(64) COMMENT '登录方式'\"},{\"name\":\"username\",\"definition\":\"varchar(255) COMMENT '用户名'\"},{\"name\":\"password\",\"definition\":\"varchar(255) COMMENT '密码'\"},{\"name\":\"su\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否需要su'\"},{\"name\":\"privateKey\",\"definition\":\"varchar(4096) COMMENT '私钥'\"},{\"name\":\"passphrase\",\"definition\":\"varchar(512) COMMENT '私钥密码'\"},{\"name\":\"description\",\"definition\":\"varchar(255) COMMENT '备注'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '专有节点'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '角色'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeIPAddressGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeIPAddressGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(128) DEFAULT NULL COMMENT '分组名',\\n `value` varchar(128) DEFAULT NULL COMMENT 'IP值',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP地址分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(128) COMMENT '分组名'\"},{\"name\":\"value\",\"definition\":\"varchar(128) COMMENT 'IP值'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeIPAddressLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeIPAddressLogs` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `addressId` bigint(20) unsigned DEFAULT '0' COMMENT '地址ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `description` varchar(512) DEFAULT NULL COMMENT '描述',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '操作时间',\\n `isUp` tinyint(1) unsigned DEFAULT '0' COMMENT '是否在线',\\n `isOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用',\\n `canAccess` tinyint(1) unsigned DEFAULT '0' COMMENT '是否可访问',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD用来清理',\\n `backupIP` varchar(128) DEFAULT NULL COMMENT '备用IP',\\n PRIMARY KEY (`id`),\\n KEY `addressId` (`addressId`),\\n KEY `day` (`day`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP状态变更日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"addressId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '地址ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '描述'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '操作时间'\"},{\"name\":\"isUp\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否在线'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用'\"},{\"name\":\"canAccess\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否可访问'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD用来清理'\"},{\"name\":\"backupIP\",\"definition\":\"varchar(128) COMMENT '备用IP'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"addressId\",\"definition\":\"KEY `addressId` (`addressId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeIPAddressThresholds\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeIPAddressThresholds` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `addressId` bigint(11) unsigned DEFAULT '0' COMMENT 'IP地址ID',\\n `items` json DEFAULT NULL COMMENT '阈值条目',\\n `actions` json DEFAULT NULL COMMENT '动作',\\n `notifiedAt` bigint(11) unsigned DEFAULT '0' COMMENT '上次通知时间',\\n `isMatched` tinyint(1) unsigned DEFAULT '0' COMMENT '上次是否匹配',\\n `state` tinyint(1) unsigned DEFAULT '0' COMMENT '状态',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n PRIMARY KEY (`id`),\\n KEY `addressId` (`addressId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='IP地址阈值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"addressId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT 'IP地址ID'\"},{\"name\":\"items\",\"definition\":\"json COMMENT '阈值条目'\"},{\"name\":\"actions\",\"definition\":\"json COMMENT '动作'\"},{\"name\":\"notifiedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '上次通知时间'\"},{\"name\":\"isMatched\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '上次是否匹配'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '状态'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"addressId\",\"definition\":\"KEY `addressId` (`addressId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeIPAddresses\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeIPAddresses` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '节点角色',\\n `groupId` int(11) unsigned DEFAULT '0' COMMENT '所属分组ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `ip` varchar(128) DEFAULT NULL COMMENT 'IP地址',\\n `description` varchar(255) DEFAULT NULL COMMENT '描述',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `canAccess` tinyint(1) unsigned DEFAULT '1' COMMENT '是否可以访问',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `isUp` tinyint(1) unsigned DEFAULT '1' COMMENT '是否上线',\\n `isHealthy` tinyint(1) unsigned DEFAULT '1' COMMENT '是否健康',\\n `thresholds` json DEFAULT NULL COMMENT '上线阈值',\\n `connectivity` json DEFAULT NULL COMMENT '连通性状态',\\n `backupIP` varchar(128) DEFAULT NULL COMMENT '备用IP',\\n `backupThresholdId` int(10) unsigned DEFAULT '0' COMMENT '触发备用IP的阈值',\\n `countUp` int(11) unsigned DEFAULT '0' COMMENT 'UP状态次数',\\n `countDown` int(11) unsigned DEFAULT '0' COMMENT 'DOWN状态次数',\\n PRIMARY KEY (`id`),\\n KEY `nodeId` (`nodeId`),\\n KEY `groupId` (`groupId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点IP地址'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '节点角色'\"},{\"name\":\"groupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '所属分组ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"ip\",\"definition\":\"varchar(128) COMMENT 'IP地址'\"},{\"name\":\"description\",\"definition\":\"varchar(255) COMMENT '描述'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"canAccess\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否可以访问'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"isUp\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否上线'\"},{\"name\":\"isHealthy\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否健康'\"},{\"name\":\"thresholds\",\"definition\":\"json COMMENT '上线阈值'\"},{\"name\":\"connectivity\",\"definition\":\"json COMMENT '连通性状态'\"},{\"name\":\"backupIP\",\"definition\":\"varchar(128) COMMENT '备用IP'\"},{\"name\":\"backupThresholdId\",\"definition\":\"int(10) unsigned DEFAULT '0' COMMENT '触发备用IP的阈值'\"},{\"name\":\"countUp\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'UP状态次数'\"},{\"name\":\"countDown\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'DOWN状态次数'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"groupId\",\"definition\":\"KEY `groupId` (`groupId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeLogins\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeLogins` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '角色',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `type` varchar(255) DEFAULT NULL COMMENT '类型ssh,agent',\\n `params` json DEFAULT NULL COMMENT '配置参数',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `nodeId` (`nodeId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点登录信息'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '角色'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '类型ssh,agent'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '配置参数'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeLogs` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `role` varchar(64) DEFAULT NULL COMMENT '节点角色',\\n `type` varchar(128) DEFAULT NULL COMMENT '类型',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `tag` varchar(255) DEFAULT NULL COMMENT '标签',\\n `description` varchar(2048) DEFAULT NULL COMMENT '描述',\\n `level` varchar(32) DEFAULT NULL COMMENT '级别',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `originId` int(11) unsigned DEFAULT '0' COMMENT '源站ID',\\n `hash` varchar(32) DEFAULT NULL COMMENT '信息内容Hash',\\n `count` int(11) unsigned DEFAULT '0' COMMENT '重复次数',\\n `isFixed` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已处理',\\n `isRead` tinyint(1) unsigned DEFAULT '1' COMMENT '是否已读',\\n `params` json DEFAULT NULL COMMENT '参数',\\n PRIMARY KEY (`id`),\\n KEY `level` (`level`),\\n KEY `day` (`day`),\\n KEY `role_nodeId` (`role`,`nodeId`) USING BTREE,\\n KEY `hash` (`hash`),\\n KEY `serverId` (`serverId`),\\n KEY `originId` (`originId`),\\n KEY `isRead` (`isRead`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"role\",\"definition\":\"varchar(64) COMMENT '节点角色'\"},{\"name\":\"type\",\"definition\":\"varchar(128) COMMENT '类型'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"tag\",\"definition\":\"varchar(255) COMMENT '标签'\"},{\"name\":\"description\",\"definition\":\"varchar(2048) COMMENT '描述'\"},{\"name\":\"level\",\"definition\":\"varchar(32) COMMENT '级别'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"originId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '源站ID'\"},{\"name\":\"hash\",\"definition\":\"varchar(32) COMMENT '信息内容Hash'\"},{\"name\":\"count\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '重复次数'\"},{\"name\":\"isFixed\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已处理'\"},{\"name\":\"isRead\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否已读'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"level\",\"definition\":\"KEY `level` (`level`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"role_nodeId\",\"definition\":\"KEY `role_nodeId` (`role`,`nodeId`) USING BTREE\"},{\"name\":\"hash\",\"definition\":\"KEY `hash` (`hash`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"originId\",\"definition\":\"KEY `originId` (`originId`) USING BTREE\"},{\"name\":\"isRead\",\"definition\":\"KEY `isRead` (`isRead`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodePriceItems\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodePriceItems` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `type` varchar(64) DEFAULT NULL COMMENT '类型:峰值|流量',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `bitsFrom` bigint(20) unsigned DEFAULT '0' COMMENT '起始值',\\n `bitsTo` bigint(20) unsigned DEFAULT '0' COMMENT '结束值',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `type` (`type`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域计费设置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '类型:峰值|流量'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"bitsFrom\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '起始值'\"},{\"name\":\"bitsTo\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '结束值'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`type`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeRegions\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeRegions` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `prices` json DEFAULT NULL COMMENT '流量价格',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点区域'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"prices\",\"definition\":\"json COMMENT '流量价格'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeTasks\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeTasks` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '节点角色',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '任务类型',\\n `uniqueId` varchar(255) DEFAULT NULL COMMENT '唯一IDnodeId@type',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `isDone` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成',\\n `isOk` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成',\\n `error` varchar(1024) DEFAULT NULL COMMENT '错误信息',\\n `isNotified` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已通知更新',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE,\\n KEY `nodeId` (`nodeId`),\\n KEY `isDone` (`isDone`),\\n KEY `clusterId` (`clusterId`),\\n KEY `isNotified` (`isNotified`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点同步任务'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '节点角色'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '任务类型'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(255) COMMENT '唯一IDnodeId@type'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"isDone\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成'\"},{\"name\":\"isOk\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已完成'\"},{\"name\":\"error\",\"definition\":\"varchar(1024) COMMENT '错误信息'\"},{\"name\":\"isNotified\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已通知更新'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"isDone\",\"definition\":\"KEY `isDone` (`isDone`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"isNotified\",\"definition\":\"KEY `isNotified` (`isNotified`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeThresholds\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeThresholds` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `role` varchar(32) DEFAULT NULL COMMENT '节点角色',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `item` varchar(255) DEFAULT NULL COMMENT '监控项',\\n `param` varchar(255) DEFAULT NULL COMMENT '参数',\\n `operator` varchar(255) DEFAULT NULL COMMENT '操作符',\\n `value` json DEFAULT NULL COMMENT '对比值',\\n `message` varchar(512) DEFAULT NULL COMMENT '消息内容',\\n `notifyDuration` int(11) unsigned DEFAULT '0' COMMENT '通知间隔(单位分钟)',\\n `notifiedAt` int(11) unsigned DEFAULT '0' COMMENT '上次通知时间',\\n `duration` int(11) unsigned DEFAULT '0' COMMENT '时间段',\\n `durationUnit` varchar(16) DEFAULT NULL COMMENT '时间段单位',\\n `sumMethod` varchar(32) DEFAULT NULL COMMENT '聚合方法',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `nodeId` (`nodeId`),\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='集群阈值设置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) COMMENT '节点角色'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"item\",\"definition\":\"varchar(255) COMMENT '监控项'\"},{\"name\":\"param\",\"definition\":\"varchar(255) COMMENT '参数'\"},{\"name\":\"operator\",\"definition\":\"varchar(255) COMMENT '操作符'\"},{\"name\":\"value\",\"definition\":\"json COMMENT '对比值'\"},{\"name\":\"message\",\"definition\":\"varchar(512) COMMENT '消息内容'\"},{\"name\":\"notifyDuration\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '通知间隔(单位分钟)'\"},{\"name\":\"notifiedAt\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '上次通知时间'\"},{\"name\":\"duration\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '时间段'\"},{\"name\":\"durationUnit\",\"definition\":\"varchar(16) COMMENT '时间段单位'\"},{\"name\":\"sumMethod\",\"definition\":\"varchar(32) COMMENT '聚合方法'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeTrafficDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeTrafficDailyStats` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '节点角色',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `bytes` bigint(20) unsigned DEFAULT NULL COMMENT '流量字节',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_day` (`clusterId`,`nodeId`,`day`) USING BTREE,\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='总的流量统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '节点角色'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned COMMENT '流量字节'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_day\",\"definition\":\"UNIQUE KEY `node_day` (`clusterId`,`nodeId`,`day`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeTrafficHourlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeTrafficHourlyStats` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `role` varchar(32) DEFAULT 'node' COMMENT '节点角色',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT NULL COMMENT '流量字节',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `node_day` (`clusterId`,`nodeId`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='总的流量统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"role\",\"definition\":\"varchar(32) DEFAULT 'node' COMMENT '节点角色'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned COMMENT '流量字节'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"node_day\",\"definition\":\"UNIQUE KEY `node_day` (`clusterId`,`nodeId`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodeValues\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodeValues` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `role` varchar(64) DEFAULT NULL COMMENT '节点角色',\\n `item` varchar(255) DEFAULT NULL COMMENT '监控项',\\n `value` json DEFAULT NULL COMMENT '数据',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期',\\n `hour` varchar(10) DEFAULT NULL COMMENT '小时',\\n `minute` varchar(12) DEFAULT NULL COMMENT '分钟',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `nodeId_role_time` (`nodeId`,`role`,`item`,`day`,`hour`,`minute`) USING BTREE,\\n KEY `nodeId` (`nodeId`),\\n KEY `clusterId` (`clusterId`),\\n KEY `role_item_minute` (`role`,`item`,`minute`),\\n KEY `day` (`day`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点监控数据'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"role\",\"definition\":\"varchar(64) COMMENT '节点角色'\"},{\"name\":\"item\",\"definition\":\"varchar(255) COMMENT '监控项'\"},{\"name\":\"value\",\"definition\":\"json COMMENT '数据'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT '小时'\"},{\"name\":\"minute\",\"definition\":\"varchar(12) COMMENT '分钟'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"nodeId_role_time\",\"definition\":\"UNIQUE KEY `nodeId_role_time` (`nodeId`,`role`,`item`,`day`,`hour`,`minute`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"role_item_minute\",\"definition\":\"KEY `role_item_minute` (`role`,`item`,`minute`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `level` tinyint(1) unsigned DEFAULT '1' COMMENT '级别',\\n `lnAddrs` json DEFAULT NULL COMMENT 'Ln级别访问地址',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `isUp` tinyint(1) unsigned DEFAULT '1' COMMENT '是否在线',\\n `countUp` int(11) unsigned DEFAULT '0' COMMENT '连续在线次数',\\n `countDown` int(11) unsigned DEFAULT '0' COMMENT '连续下线次数',\\n `isActive` tinyint(1) unsigned DEFAULT '1' COMMENT '是否活跃',\\n `inactiveNotifiedAt` bigint(11) unsigned DEFAULT '0' COMMENT '离线通知时间',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '节点ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `name` varchar(255) DEFAULT NULL COMMENT '节点名',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '主集群ID',\\n `secondaryClusterIds` json DEFAULT NULL COMMENT '从集群ID',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `groupId` int(11) unsigned DEFAULT '0' COMMENT '分组ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `status` json DEFAULT NULL COMMENT '最新的状态',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '当前版本号',\\n `latestVersion` int(11) unsigned DEFAULT '0' COMMENT '最后版本号',\\n `installDir` varchar(512) DEFAULT NULL COMMENT '安装目录',\\n `isInstalled` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已安装',\\n `installStatus` json DEFAULT NULL COMMENT '安装状态',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `connectedAPINodes` json DEFAULT NULL COMMENT '当前连接的API节点',\\n `maxCPU` int(4) unsigned DEFAULT '0' COMMENT '可以使用的最多CPU',\\n `maxThreads` int(11) unsigned DEFAULT '0' COMMENT '最大线程数',\\n `ddosProtection` json DEFAULT NULL COMMENT 'DDOS配置',\\n `dnsRoutes` json DEFAULT NULL COMMENT 'DNS线路设置',\\n `maxCacheDiskCapacity` json DEFAULT NULL COMMENT '硬盘缓存容量',\\n `maxCacheMemoryCapacity` json DEFAULT NULL COMMENT '内存缓存容量',\\n `cacheDiskDir` varchar(255) DEFAULT NULL COMMENT '缓存目录',\\n `dnsResolver` json DEFAULT NULL COMMENT 'DNS解析器',\\n PRIMARY KEY (`id`),\\n KEY `uniqueId` (`uniqueId`),\\n KEY `clusterId` (`clusterId`),\\n KEY `groupId` (`groupId`),\\n KEY `regionId` (`regionId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"level\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '级别'\"},{\"name\":\"lnAddrs\",\"definition\":\"json COMMENT 'Ln级别访问地址'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"isUp\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否在线'\"},{\"name\":\"countUp\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '连续在线次数'\"},{\"name\":\"countDown\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '连续下线次数'\"},{\"name\":\"isActive\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否活跃'\"},{\"name\":\"inactiveNotifiedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '离线通知时间'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '节点ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '节点名'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '主集群ID'\"},{\"name\":\"secondaryClusterIds\",\"definition\":\"json COMMENT '从集群ID'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"groupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '分组ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '最新的状态'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '当前版本号'\"},{\"name\":\"latestVersion\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最后版本号'\"},{\"name\":\"installDir\",\"definition\":\"varchar(512) COMMENT '安装目录'\"},{\"name\":\"isInstalled\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已安装'\"},{\"name\":\"installStatus\",\"definition\":\"json COMMENT '安装状态'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"connectedAPINodes\",\"definition\":\"json COMMENT '当前连接的API节点'\"},{\"name\":\"maxCPU\",\"definition\":\"int(4) unsigned DEFAULT '0' COMMENT '可以使用的最多CPU'\"},{\"name\":\"maxThreads\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最大线程数'\"},{\"name\":\"ddosProtection\",\"definition\":\"json COMMENT 'DDOS配置'\"},{\"name\":\"dnsRoutes\",\"definition\":\"json COMMENT 'DNS线路设置'\"},{\"name\":\"maxCacheDiskCapacity\",\"definition\":\"json COMMENT '硬盘缓存容量'\"},{\"name\":\"maxCacheMemoryCapacity\",\"definition\":\"json COMMENT '内存缓存容量'\"},{\"name\":\"cacheDiskDir\",\"definition\":\"varchar(255) COMMENT '缓存目录'\"},{\"name\":\"dnsResolver\",\"definition\":\"json COMMENT 'DNS解析器'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"KEY `uniqueId` (`uniqueId`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"groupId\",\"definition\":\"KEY `groupId` (`groupId`) USING BTREE\"},{\"name\":\"regionId\",\"definition\":\"KEY `regionId` (`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeOrderMethods\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeOrderMethods` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `description` varchar(255) DEFAULT NULL COMMENT '描述',\\n `parentCode` varchar(255) DEFAULT NULL COMMENT '内置的父级代号',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `url` varchar(1024) DEFAULT NULL COMMENT 'URL',\\n `secret` varchar(128) DEFAULT NULL COMMENT '密钥',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `clientType` varchar(32) DEFAULT NULL COMMENT '客户端类型',\\n `qrcodeTitle` varchar(255) DEFAULT NULL COMMENT '二维码标题',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单支付方式'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"description\",\"definition\":\"varchar(255) COMMENT '描述'\"},{\"name\":\"parentCode\",\"definition\":\"varchar(255) COMMENT '内置的父级代号'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"url\",\"definition\":\"varchar(1024) COMMENT 'URL'\"},{\"name\":\"secret\",\"definition\":\"varchar(128) COMMENT '密钥'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"clientType\",\"definition\":\"varchar(32) COMMENT '客户端类型'\"},{\"name\":\"qrcodeTitle\",\"definition\":\"varchar(255) COMMENT '二维码标题'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeOrigins\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeOrigins` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本',\\n `addr` json DEFAULT NULL COMMENT '地址',\\n `description` varchar(512) DEFAULT NULL COMMENT '描述',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `connTimeout` json DEFAULT NULL COMMENT '连接超时',\\n `readTimeout` json DEFAULT NULL COMMENT '读超时',\\n `idleTimeout` json DEFAULT NULL COMMENT '空闲连接超时',\\n `maxFails` int(11) unsigned DEFAULT '0' COMMENT '最多失败次数',\\n `maxConns` int(11) unsigned DEFAULT '0' COMMENT '最大并发连接数',\\n `maxIdleConns` int(11) unsigned DEFAULT '0' COMMENT '最多空闲连接数',\\n `httpRequestURI` varchar(1024) DEFAULT NULL COMMENT '转发后的请求URI',\\n `httpRequestHeader` json DEFAULT NULL COMMENT '请求Header配置',\\n `httpResponseHeader` json DEFAULT NULL COMMENT '响应Header配置',\\n `host` varchar(255) DEFAULT NULL COMMENT '自定义主机名',\\n `healthCheck` json DEFAULT NULL COMMENT '健康检查设置',\\n `cert` json DEFAULT NULL COMMENT '证书设置',\\n `ftp` json DEFAULT NULL COMMENT 'FTP相关设置',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `domains` json DEFAULT NULL COMMENT '所属域名',\\n `followPort` tinyint(1) unsigned DEFAULT '0' COMMENT '端口跟随',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='源站'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本'\"},{\"name\":\"addr\",\"definition\":\"json COMMENT '地址'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '描述'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"connTimeout\",\"definition\":\"json COMMENT '连接超时'\"},{\"name\":\"readTimeout\",\"definition\":\"json COMMENT '读超时'\"},{\"name\":\"idleTimeout\",\"definition\":\"json COMMENT '空闲连接超时'\"},{\"name\":\"maxFails\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最多失败次数'\"},{\"name\":\"maxConns\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最大并发连接数'\"},{\"name\":\"maxIdleConns\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最多空闲连接数'\"},{\"name\":\"httpRequestURI\",\"definition\":\"varchar(1024) COMMENT '转发后的请求URI'\"},{\"name\":\"httpRequestHeader\",\"definition\":\"json COMMENT '请求Header配置'\"},{\"name\":\"httpResponseHeader\",\"definition\":\"json COMMENT '响应Header配置'\"},{\"name\":\"host\",\"definition\":\"varchar(255) COMMENT '自定义主机名'\"},{\"name\":\"healthCheck\",\"definition\":\"json COMMENT '健康检查设置'\"},{\"name\":\"cert\",\"definition\":\"json COMMENT '证书设置'\"},{\"name\":\"ftp\",\"definition\":\"json COMMENT 'FTP相关设置'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"domains\",\"definition\":\"json COMMENT '所属域名'\"},{\"name\":\"followPort\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '端口跟随'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgePlans\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgePlans` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '套餐名',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `trafficLimit` json DEFAULT NULL COMMENT '流量限制',\\n `features` json DEFAULT NULL COMMENT '允许的功能',\\n `trafficPrice` json DEFAULT NULL COMMENT '流量价格设定',\\n `bandwidthPrice` json DEFAULT NULL COMMENT '带宽价格',\\n `monthlyPrice` decimal(12,2) unsigned DEFAULT '0.00' COMMENT '月付',\\n `seasonallyPrice` decimal(12,2) unsigned DEFAULT '0.00' COMMENT '季付',\\n `yearlyPrice` decimal(12,2) unsigned DEFAULT '0.00' COMMENT '年付',\\n `priceType` varchar(32) DEFAULT NULL COMMENT '价格类型',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `state` (`state`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户套餐'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '套餐名'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"trafficLimit\",\"definition\":\"json COMMENT '流量限制'\"},{\"name\":\"features\",\"definition\":\"json COMMENT '允许的功能'\"},{\"name\":\"trafficPrice\",\"definition\":\"json COMMENT '流量价格设定'\"},{\"name\":\"bandwidthPrice\",\"definition\":\"json COMMENT '带宽价格'\"},{\"name\":\"monthlyPrice\",\"definition\":\"decimal(12,2) unsigned DEFAULT '0.00' COMMENT '月付'\"},{\"name\":\"seasonallyPrice\",\"definition\":\"decimal(12,2) unsigned DEFAULT '0.00' COMMENT '季付'\"},{\"name\":\"yearlyPrice\",\"definition\":\"decimal(12,2) unsigned DEFAULT '0.00' COMMENT '年付'\"},{\"name\":\"priceType\",\"definition\":\"varchar(32) COMMENT '价格类型'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"state\",\"definition\":\"KEY `state` (`state`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeProviders\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeProviders` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `username` varchar(64) DEFAULT NULL COMMENT '用户名',\\n `password` varchar(32) DEFAULT NULL COMMENT '密码',\\n `fullname` varchar(64) DEFAULT NULL COMMENT '真实姓名',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='供应商'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"username\",\"definition\":\"varchar(64) COMMENT '用户名'\"},{\"name\":\"password\",\"definition\":\"varchar(32) COMMENT '密码'\"},{\"name\":\"fullname\",\"definition\":\"varchar(64) COMMENT '真实姓名'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeRegionCities\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeRegionCities` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `provinceId` int(11) unsigned DEFAULT '0' COMMENT '省份ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `customName` varchar(255) DEFAULT NULL COMMENT '自定义名称',\\n `customCodes` json DEFAULT NULL COMMENT '自定义代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `dataId` varchar(255) DEFAULT NULL COMMENT '原始数据ID',\\n PRIMARY KEY (`id`),\\n KEY `proviceId` (`provinceId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-城市'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"provinceId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '省份ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"customName\",\"definition\":\"varchar(255) COMMENT '自定义名称'\"},{\"name\":\"customCodes\",\"definition\":\"json COMMENT '自定义代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"dataId\",\"definition\":\"varchar(255) COMMENT '原始数据ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"proviceId\",\"definition\":\"KEY `proviceId` (`provinceId`) USING BTREE\"}],\"records\":[{\"id\":1,\"values\":{\"codes\":\"[\\\"北京市\\\", \\\"北京\\\"]\",\"dataId\":\"215\",\"id\":\"1\",\"name\":\"北京市\",\"provinceId\":\"1\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2,\"values\":{\"codes\":\"[\\\"天津市\\\", \\\"天津\\\"]\",\"dataId\":\"235\",\"id\":\"2\",\"name\":\"天津市\",\"provinceId\":\"2\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":3,\"values\":{\"codes\":\"[\\\"石家庄市\\\"]\",\"dataId\":\"255\",\"id\":\"3\",\"name\":\"石家庄市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":4,\"values\":{\"codes\":\"[\\\"唐山市\\\"]\",\"dataId\":\"279\",\"id\":\"4\",\"name\":\"唐山市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":5,\"values\":{\"codes\":\"[\\\"秦皇岛市\\\"]\",\"dataId\":\"294\",\"id\":\"5\",\"name\":\"秦皇岛市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":6,\"values\":{\"codes\":\"[\\\"邯郸市\\\"]\",\"dataId\":\"302\",\"id\":\"6\",\"name\":\"邯郸市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":7,\"values\":{\"codes\":\"[\\\"邢台市\\\"]\",\"dataId\":\"322\",\"id\":\"7\",\"name\":\"邢台市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":8,\"values\":{\"codes\":\"[\\\"保定市\\\"]\",\"dataId\":\"340\",\"id\":\"8\",\"name\":\"保定市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":9,\"values\":{\"codes\":\"[\\\"张家口市\\\"]\",\"dataId\":\"366\",\"id\":\"9\",\"name\":\"张家口市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":10,\"values\":{\"codes\":\"[\\\"承德市\\\"]\",\"dataId\":\"382\",\"id\":\"10\",\"name\":\"承德市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":11,\"values\":{\"codes\":\"[\\\"沧州市\\\"]\",\"dataId\":\"394\",\"id\":\"11\",\"name\":\"沧州市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":12,\"values\":{\"codes\":\"[\\\"廊坊市\\\"]\",\"dataId\":\"410\",\"id\":\"12\",\"name\":\"廊坊市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":13,\"values\":{\"codes\":\"[\\\"衡水市\\\"]\",\"dataId\":\"421\",\"id\":\"13\",\"name\":\"衡水市\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":14,\"values\":{\"codes\":\"[\\\"太原市\\\"]\",\"dataId\":\"434\",\"id\":\"14\",\"name\":\"太原市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":15,\"values\":{\"codes\":\"[\\\"大同市\\\"]\",\"dataId\":\"445\",\"id\":\"15\",\"name\":\"大同市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":16,\"values\":{\"codes\":\"[\\\"阳泉市\\\"]\",\"dataId\":\"457\",\"id\":\"16\",\"name\":\"阳泉市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":17,\"values\":{\"codes\":\"[\\\"长治市\\\"]\",\"dataId\":\"461\",\"id\":\"17\",\"name\":\"长治市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":18,\"values\":{\"codes\":\"[\\\"晋城市\\\"]\",\"dataId\":\"473\",\"id\":\"18\",\"name\":\"晋城市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":19,\"values\":{\"codes\":\"[\\\"朔州市\\\"]\",\"dataId\":\"479\",\"id\":\"19\",\"name\":\"朔州市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":20,\"values\":{\"codes\":\"[\\\"晋中市\\\"]\",\"dataId\":\"486\",\"id\":\"20\",\"name\":\"晋中市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":21,\"values\":{\"codes\":\"[\\\"运城市\\\"]\",\"dataId\":\"498\",\"id\":\"21\",\"name\":\"运城市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":22,\"values\":{\"codes\":\"[\\\"忻州市\\\"]\",\"dataId\":\"512\",\"id\":\"22\",\"name\":\"忻州市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":23,\"values\":{\"codes\":\"[\\\"临汾市\\\"]\",\"dataId\":\"527\",\"id\":\"23\",\"name\":\"临汾市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":24,\"values\":{\"codes\":\"[\\\"吕梁市\\\"]\",\"dataId\":\"545\",\"id\":\"24\",\"name\":\"吕梁市\",\"provinceId\":\"4\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":25,\"values\":{\"codes\":\"[\\\"呼和浩特市\\\"]\",\"dataId\":\"560\",\"id\":\"25\",\"name\":\"呼和浩特市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":26,\"values\":{\"codes\":\"[\\\"包头市\\\"]\",\"dataId\":\"570\",\"id\":\"26\",\"name\":\"包头市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":27,\"values\":{\"codes\":\"[\\\"乌海市\\\"]\",\"dataId\":\"580\",\"id\":\"27\",\"name\":\"乌海市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":28,\"values\":{\"codes\":\"[\\\"赤峰市\\\"]\",\"dataId\":\"584\",\"id\":\"28\",\"name\":\"赤峰市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":29,\"values\":{\"codes\":\"[\\\"通辽市\\\"]\",\"dataId\":\"597\",\"id\":\"29\",\"name\":\"通辽市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":30,\"values\":{\"codes\":\"[\\\"鄂尔多斯市\\\"]\",\"dataId\":\"606\",\"id\":\"30\",\"name\":\"鄂尔多斯市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":31,\"values\":{\"codes\":\"[\\\"呼伦贝尔市\\\"]\",\"dataId\":\"615\",\"id\":\"31\",\"name\":\"呼伦贝尔市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":32,\"values\":{\"codes\":\"[\\\"巴彦淖尔市\\\"]\",\"dataId\":\"629\",\"id\":\"32\",\"name\":\"巴彦淖尔市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":33,\"values\":{\"codes\":\"[\\\"乌兰察布市\\\"]\",\"dataId\":\"637\",\"id\":\"33\",\"name\":\"乌兰察布市\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":34,\"values\":{\"codes\":\"[\\\"兴安盟\\\"]\",\"dataId\":\"649\",\"id\":\"34\",\"name\":\"兴安盟\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":35,\"values\":{\"codes\":\"[\\\"锡林郭勒盟\\\", \\\"锡林郭勒\\\"]\",\"dataId\":\"656\",\"id\":\"35\",\"name\":\"锡林郭勒盟\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":36,\"values\":{\"codes\":\"[\\\"阿拉善盟\\\", \\\"阿拉善\\\"]\",\"dataId\":\"669\",\"id\":\"36\",\"name\":\"阿拉善盟\",\"provinceId\":\"5\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":37,\"values\":{\"codes\":\"[\\\"沈阳市\\\"]\",\"dataId\":\"674\",\"id\":\"37\",\"name\":\"沈阳市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":38,\"values\":{\"codes\":\"[\\\"大连市\\\"]\",\"dataId\":\"687\",\"id\":\"38\",\"name\":\"大连市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":39,\"values\":{\"codes\":\"[\\\"鞍山市\\\"]\",\"dataId\":\"698\",\"id\":\"39\",\"name\":\"鞍山市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":40,\"values\":{\"codes\":\"[\\\"抚顺市\\\"]\",\"dataId\":\"705\",\"id\":\"40\",\"name\":\"抚顺市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":41,\"values\":{\"codes\":\"[\\\"本溪市\\\"]\",\"dataId\":\"713\",\"id\":\"41\",\"name\":\"本溪市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":42,\"values\":{\"codes\":\"[\\\"丹东市\\\"]\",\"dataId\":\"720\",\"id\":\"42\",\"name\":\"丹东市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":43,\"values\":{\"codes\":\"[\\\"锦州市\\\"]\",\"dataId\":\"727\",\"id\":\"43\",\"name\":\"锦州市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":44,\"values\":{\"codes\":\"[\\\"营口市\\\"]\",\"dataId\":\"735\",\"id\":\"44\",\"name\":\"营口市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":45,\"values\":{\"codes\":\"[\\\"阜新市\\\"]\",\"dataId\":\"742\",\"id\":\"45\",\"name\":\"阜新市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":46,\"values\":{\"codes\":\"[\\\"辽阳市\\\"]\",\"dataId\":\"750\",\"id\":\"46\",\"name\":\"辽阳市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":47,\"values\":{\"codes\":\"[\\\"盘锦市\\\"]\",\"dataId\":\"758\",\"id\":\"47\",\"name\":\"盘锦市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":48,\"values\":{\"codes\":\"[\\\"铁岭市\\\"]\",\"dataId\":\"763\",\"id\":\"48\",\"name\":\"铁岭市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":49,\"values\":{\"codes\":\"[\\\"朝阳市\\\"]\",\"dataId\":\"771\",\"id\":\"49\",\"name\":\"朝阳市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":50,\"values\":{\"codes\":\"[\\\"葫芦岛市\\\"]\",\"dataId\":\"779\",\"id\":\"50\",\"name\":\"葫芦岛市\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":51,\"values\":{\"codes\":\"[\\\"长春市\\\"]\",\"dataId\":\"787\",\"id\":\"51\",\"name\":\"长春市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":52,\"values\":{\"codes\":\"[\\\"吉林市\\\"]\",\"dataId\":\"797\",\"id\":\"52\",\"name\":\"吉林市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":53,\"values\":{\"codes\":\"[\\\"四平市\\\"]\",\"dataId\":\"807\",\"id\":\"53\",\"name\":\"四平市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":54,\"values\":{\"codes\":\"[\\\"辽源市\\\"]\",\"dataId\":\"812\",\"id\":\"54\",\"name\":\"辽源市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":55,\"values\":{\"codes\":\"[\\\"通化市\\\"]\",\"dataId\":\"817\",\"id\":\"55\",\"name\":\"通化市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":56,\"values\":{\"codes\":\"[\\\"白山市\\\"]\",\"dataId\":\"825\",\"id\":\"56\",\"name\":\"白山市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":57,\"values\":{\"codes\":\"[\\\"松原市\\\"]\",\"dataId\":\"832\",\"id\":\"57\",\"name\":\"松原市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":58,\"values\":{\"codes\":\"[\\\"白城市\\\"]\",\"dataId\":\"838\",\"id\":\"58\",\"name\":\"白城市\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":59,\"values\":{\"codes\":\"[\\\"延边朝鲜族自治州\\\", \\\"延边\\\"]\",\"dataId\":\"844\",\"id\":\"59\",\"name\":\"延边朝鲜族自治州\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":60,\"values\":{\"codes\":\"[\\\"哈尔滨市\\\"]\",\"dataId\":\"854\",\"id\":\"60\",\"name\":\"哈尔滨市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":61,\"values\":{\"codes\":\"[\\\"齐齐哈尔市\\\"]\",\"dataId\":\"874\",\"id\":\"61\",\"name\":\"齐齐哈尔市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":62,\"values\":{\"codes\":\"[\\\"鸡西市\\\"]\",\"dataId\":\"891\",\"id\":\"62\",\"name\":\"鸡西市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":63,\"values\":{\"codes\":\"[\\\"鹤岗市\\\"]\",\"dataId\":\"901\",\"id\":\"63\",\"name\":\"鹤岗市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":64,\"values\":{\"codes\":\"[\\\"双鸭山市\\\"]\",\"dataId\":\"910\",\"id\":\"64\",\"name\":\"双鸭山市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":65,\"values\":{\"codes\":\"[\\\"大庆市\\\"]\",\"dataId\":\"919\",\"id\":\"65\",\"name\":\"大庆市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":66,\"values\":{\"codes\":\"[\\\"伊春市\\\"]\",\"dataId\":\"929\",\"id\":\"66\",\"name\":\"伊春市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":67,\"values\":{\"codes\":\"[\\\"佳木斯市\\\"]\",\"dataId\":\"947\",\"id\":\"67\",\"name\":\"佳木斯市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":68,\"values\":{\"codes\":\"[\\\"七台河市\\\"]\",\"dataId\":\"957\",\"id\":\"68\",\"name\":\"七台河市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":69,\"values\":{\"codes\":\"[\\\"牡丹江市\\\"]\",\"dataId\":\"962\",\"id\":\"69\",\"name\":\"牡丹江市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":70,\"values\":{\"codes\":\"[\\\"黑河市\\\"]\",\"dataId\":\"972\",\"id\":\"70\",\"name\":\"黑河市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":71,\"values\":{\"codes\":\"[\\\"绥化市\\\"]\",\"dataId\":\"979\",\"id\":\"71\",\"name\":\"绥化市\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":72,\"values\":{\"codes\":\"[\\\"大兴安岭地区\\\", \\\"大兴安岭\\\"]\",\"dataId\":\"990\",\"id\":\"72\",\"name\":\"大兴安岭地区\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":73,\"values\":{\"codes\":\"[\\\"上海市\\\"]\",\"dataId\":\"995\",\"id\":\"73\",\"name\":\"上海市\",\"provinceId\":\"9\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":74,\"values\":{\"codes\":\"[\\\"南京市\\\"]\",\"dataId\":\"1015\",\"id\":\"74\",\"name\":\"南京市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":75,\"values\":{\"codes\":\"[\\\"无锡市\\\"]\",\"dataId\":\"1029\",\"id\":\"75\",\"name\":\"无锡市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":76,\"values\":{\"codes\":\"[\\\"徐州市\\\"]\",\"dataId\":\"1038\",\"id\":\"76\",\"name\":\"徐州市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":77,\"values\":{\"codes\":\"[\\\"常州市\\\"]\",\"dataId\":\"1049\",\"id\":\"77\",\"name\":\"常州市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":78,\"values\":{\"codes\":\"[\\\"苏州市\\\"]\",\"dataId\":\"1057\",\"id\":\"78\",\"name\":\"苏州市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":79,\"values\":{\"codes\":\"[\\\"南通市\\\"]\",\"dataId\":\"1069\",\"id\":\"79\",\"name\":\"南通市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":80,\"values\":{\"codes\":\"[\\\"连云港市\\\"]\",\"dataId\":\"1078\",\"id\":\"80\",\"name\":\"连云港市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":81,\"values\":{\"codes\":\"[\\\"淮安市\\\"]\",\"dataId\":\"1085\",\"id\":\"81\",\"name\":\"淮安市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":82,\"values\":{\"codes\":\"[\\\"盐城市\\\"]\",\"dataId\":\"1093\",\"id\":\"82\",\"name\":\"盐城市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":83,\"values\":{\"codes\":\"[\\\"扬州市\\\"]\",\"dataId\":\"1103\",\"id\":\"83\",\"name\":\"扬州市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":84,\"values\":{\"codes\":\"[\\\"镇江市\\\"]\",\"dataId\":\"1111\",\"id\":\"84\",\"name\":\"镇江市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":85,\"values\":{\"codes\":\"[\\\"泰州市\\\"]\",\"dataId\":\"1118\",\"id\":\"85\",\"name\":\"泰州市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":86,\"values\":{\"codes\":\"[\\\"宿迁市\\\"]\",\"dataId\":\"1125\",\"id\":\"86\",\"name\":\"宿迁市\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":87,\"values\":{\"codes\":\"[\\\"杭州市\\\"]\",\"dataId\":\"1132\",\"id\":\"87\",\"name\":\"杭州市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":88,\"values\":{\"codes\":\"[\\\"宁波市\\\"]\",\"dataId\":\"1146\",\"id\":\"88\",\"name\":\"宁波市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":89,\"values\":{\"codes\":\"[\\\"温州市\\\"]\",\"dataId\":\"1158\",\"id\":\"89\",\"name\":\"温州市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":90,\"values\":{\"codes\":\"[\\\"嘉兴市\\\"]\",\"dataId\":\"1170\",\"id\":\"90\",\"name\":\"嘉兴市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":91,\"values\":{\"codes\":\"[\\\"湖州市\\\"]\",\"dataId\":\"1178\",\"id\":\"91\",\"name\":\"湖州市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":92,\"values\":{\"codes\":\"[\\\"绍兴市\\\"]\",\"dataId\":\"1184\",\"id\":\"92\",\"name\":\"绍兴市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":93,\"values\":{\"codes\":\"[\\\"金华市\\\"]\",\"dataId\":\"1191\",\"id\":\"93\",\"name\":\"金华市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":94,\"values\":{\"codes\":\"[\\\"衢州市\\\"]\",\"dataId\":\"1201\",\"id\":\"94\",\"name\":\"衢州市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":95,\"values\":{\"codes\":\"[\\\"舟山市\\\"]\",\"dataId\":\"1208\",\"id\":\"95\",\"name\":\"舟山市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":96,\"values\":{\"codes\":\"[\\\"台州市\\\"]\",\"dataId\":\"1212\",\"id\":\"96\",\"name\":\"台州市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":97,\"values\":{\"codes\":\"[\\\"丽水市\\\"]\",\"dataId\":\"1222\",\"id\":\"97\",\"name\":\"丽水市\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":98,\"values\":{\"codes\":\"[\\\"合肥市\\\"]\",\"dataId\":\"1233\",\"id\":\"98\",\"name\":\"合肥市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":99,\"values\":{\"codes\":\"[\\\"芜湖市\\\"]\",\"dataId\":\"1241\",\"id\":\"99\",\"name\":\"芜湖市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":100,\"values\":{\"codes\":\"[\\\"蚌埠市\\\"]\",\"dataId\":\"1249\",\"id\":\"100\",\"name\":\"蚌埠市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":101,\"values\":{\"codes\":\"[\\\"淮南市\\\"]\",\"dataId\":\"1257\",\"id\":\"101\",\"name\":\"淮南市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":102,\"values\":{\"codes\":\"[\\\"马鞍山市\\\"]\",\"dataId\":\"1264\",\"id\":\"102\",\"name\":\"马鞍山市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":103,\"values\":{\"codes\":\"[\\\"淮北市\\\"]\",\"dataId\":\"1269\",\"id\":\"103\",\"name\":\"淮北市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":104,\"values\":{\"codes\":\"[\\\"铜陵市\\\"]\",\"dataId\":\"1274\",\"id\":\"104\",\"name\":\"铜陵市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":105,\"values\":{\"codes\":\"[\\\"安庆市\\\"]\",\"dataId\":\"1278\",\"id\":\"105\",\"name\":\"安庆市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":106,\"values\":{\"codes\":\"[\\\"黄山市\\\"]\",\"dataId\":\"1289\",\"id\":\"106\",\"name\":\"黄山市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":107,\"values\":{\"codes\":\"[\\\"滁州市\\\"]\",\"dataId\":\"1297\",\"id\":\"107\",\"name\":\"滁州市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":108,\"values\":{\"codes\":\"[\\\"阜阳市\\\"]\",\"dataId\":\"1306\",\"id\":\"108\",\"name\":\"阜阳市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":109,\"values\":{\"codes\":\"[\\\"宿州市\\\"]\",\"dataId\":\"1315\",\"id\":\"109\",\"name\":\"宿州市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":110,\"values\":{\"codes\":\"[\\\"巢湖市\\\"]\",\"dataId\":\"1321\",\"id\":\"110\",\"name\":\"巢湖市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":111,\"values\":{\"codes\":\"[\\\"六安市\\\"]\",\"dataId\":\"1327\",\"id\":\"111\",\"name\":\"六安市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":112,\"values\":{\"codes\":\"[\\\"亳州市\\\"]\",\"dataId\":\"1335\",\"id\":\"112\",\"name\":\"亳州市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":113,\"values\":{\"codes\":\"[\\\"池州市\\\"]\",\"dataId\":\"1340\",\"id\":\"113\",\"name\":\"池州市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":114,\"values\":{\"codes\":\"[\\\"宣城市\\\"]\",\"dataId\":\"1345\",\"id\":\"114\",\"name\":\"宣城市\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":115,\"values\":{\"codes\":\"[\\\"福州市\\\"]\",\"dataId\":\"1354\",\"id\":\"115\",\"name\":\"福州市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":116,\"values\":{\"codes\":\"[\\\"厦门市\\\"]\",\"dataId\":\"1367\",\"id\":\"116\",\"name\":\"厦门市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":117,\"values\":{\"codes\":\"[\\\"莆田市\\\"]\",\"dataId\":\"1374\",\"id\":\"117\",\"name\":\"莆田市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":118,\"values\":{\"codes\":\"[\\\"三明市\\\"]\",\"dataId\":\"1380\",\"id\":\"118\",\"name\":\"三明市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":119,\"values\":{\"codes\":\"[\\\"泉州市\\\"]\",\"dataId\":\"1393\",\"id\":\"119\",\"name\":\"泉州市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":120,\"values\":{\"codes\":\"[\\\"漳州市\\\"]\",\"dataId\":\"1406\",\"id\":\"120\",\"name\":\"漳州市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":121,\"values\":{\"codes\":\"[\\\"南平市\\\"]\",\"dataId\":\"1418\",\"id\":\"121\",\"name\":\"南平市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":122,\"values\":{\"codes\":\"[\\\"龙岩市\\\"]\",\"dataId\":\"1429\",\"id\":\"122\",\"name\":\"龙岩市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":123,\"values\":{\"codes\":\"[\\\"宁德市\\\"]\",\"dataId\":\"1437\",\"id\":\"123\",\"name\":\"宁德市\",\"provinceId\":\"13\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":124,\"values\":{\"codes\":\"[\\\"南昌市\\\"]\",\"dataId\":\"1448\",\"id\":\"124\",\"name\":\"南昌市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":125,\"values\":{\"codes\":\"[\\\"景德镇市\\\"]\",\"dataId\":\"1457\",\"id\":\"125\",\"name\":\"景德镇市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":126,\"values\":{\"codes\":\"[\\\"萍乡市\\\"]\",\"dataId\":\"1462\",\"id\":\"126\",\"name\":\"萍乡市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":127,\"values\":{\"codes\":\"[\\\"九江市\\\"]\",\"dataId\":\"1468\",\"id\":\"127\",\"name\":\"九江市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":128,\"values\":{\"codes\":\"[\\\"新余市\\\"]\",\"dataId\":\"1481\",\"id\":\"128\",\"name\":\"新余市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":129,\"values\":{\"codes\":\"[\\\"鹰潭市\\\"]\",\"dataId\":\"1484\",\"id\":\"129\",\"name\":\"鹰潭市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":130,\"values\":{\"codes\":\"[\\\"赣州市\\\"]\",\"dataId\":\"1488\",\"id\":\"130\",\"name\":\"赣州市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":131,\"values\":{\"codes\":\"[\\\"吉安市\\\"]\",\"dataId\":\"1507\",\"id\":\"131\",\"name\":\"吉安市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":132,\"values\":{\"codes\":\"[\\\"宜春市\\\"]\",\"dataId\":\"1521\",\"id\":\"132\",\"name\":\"宜春市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":133,\"values\":{\"codes\":\"[\\\"抚州市\\\"]\",\"dataId\":\"1532\",\"id\":\"133\",\"name\":\"抚州市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":134,\"values\":{\"codes\":\"[\\\"上饶市\\\"]\",\"dataId\":\"1544\",\"id\":\"134\",\"name\":\"上饶市\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":135,\"values\":{\"codes\":\"[\\\"济南市\\\"]\",\"dataId\":\"1558\",\"id\":\"135\",\"name\":\"济南市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":136,\"values\":{\"codes\":\"[\\\"青岛市\\\"]\",\"dataId\":\"1569\",\"id\":\"136\",\"name\":\"青岛市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":137,\"values\":{\"codes\":\"[\\\"淄博市\\\"]\",\"dataId\":\"1582\",\"id\":\"137\",\"name\":\"淄博市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":138,\"values\":{\"codes\":\"[\\\"枣庄市\\\"]\",\"dataId\":\"1591\",\"id\":\"138\",\"name\":\"枣庄市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":139,\"values\":{\"codes\":\"[\\\"东营市\\\"]\",\"dataId\":\"1597\",\"id\":\"139\",\"name\":\"东营市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":140,\"values\":{\"codes\":\"[\\\"烟台市\\\"]\",\"dataId\":\"1603\",\"id\":\"140\",\"name\":\"烟台市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":141,\"values\":{\"codes\":\"[\\\"潍坊市\\\"]\",\"dataId\":\"1616\",\"id\":\"141\",\"name\":\"潍坊市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":142,\"values\":{\"codes\":\"[\\\"济宁市\\\"]\",\"dataId\":\"1629\",\"id\":\"142\",\"name\":\"济宁市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":143,\"values\":{\"codes\":\"[\\\"泰安市\\\"]\",\"dataId\":\"1641\",\"id\":\"143\",\"name\":\"泰安市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":144,\"values\":{\"codes\":\"[\\\"威海市\\\"]\",\"dataId\":\"1648\",\"id\":\"144\",\"name\":\"威海市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":145,\"values\":{\"codes\":\"[\\\"日照市\\\"]\",\"dataId\":\"1653\",\"id\":\"145\",\"name\":\"日照市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":146,\"values\":{\"codes\":\"[\\\"莱芜市\\\"]\",\"dataId\":\"1658\",\"id\":\"146\",\"name\":\"莱芜市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":147,\"values\":{\"codes\":\"[\\\"临沂市\\\"]\",\"dataId\":\"1661\",\"id\":\"147\",\"name\":\"临沂市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":148,\"values\":{\"codes\":\"[\\\"德州市\\\"]\",\"dataId\":\"1673\",\"id\":\"148\",\"name\":\"德州市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":149,\"values\":{\"codes\":\"[\\\"聊城市\\\"]\",\"dataId\":\"1685\",\"id\":\"149\",\"name\":\"聊城市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":150,\"values\":{\"codes\":\"[\\\"滨州市\\\"]\",\"dataId\":\"1694\",\"id\":\"150\",\"name\":\"滨州市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":151,\"values\":{\"codes\":\"[\\\"菏泽市\\\"]\",\"dataId\":\"1702\",\"id\":\"151\",\"name\":\"菏泽市\",\"provinceId\":\"15\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":152,\"values\":{\"codes\":\"[\\\"郑州市\\\"]\",\"dataId\":\"1713\",\"id\":\"152\",\"name\":\"郑州市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":153,\"values\":{\"codes\":\"[\\\"开封市\\\"]\",\"dataId\":\"1726\",\"id\":\"153\",\"name\":\"开封市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":154,\"values\":{\"codes\":\"[\\\"洛阳市\\\"]\",\"dataId\":\"1734\",\"id\":\"154\",\"name\":\"洛阳市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":155,\"values\":{\"codes\":\"[\\\"平顶山市\\\"]\",\"dataId\":\"1750\",\"id\":\"155\",\"name\":\"平顶山市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":156,\"values\":{\"codes\":\"[\\\"安阳市\\\"]\",\"dataId\":\"1760\",\"id\":\"156\",\"name\":\"安阳市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":157,\"values\":{\"codes\":\"[\\\"鹤壁市\\\"]\",\"dataId\":\"1770\",\"id\":\"157\",\"name\":\"鹤壁市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":158,\"values\":{\"codes\":\"[\\\"新乡市\\\"]\",\"dataId\":\"1776\",\"id\":\"158\",\"name\":\"新乡市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":159,\"values\":{\"codes\":\"[\\\"焦作市\\\"]\",\"dataId\":\"1789\",\"id\":\"159\",\"name\":\"焦作市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":160,\"values\":{\"codes\":\"[\\\"濮阳市\\\"]\",\"dataId\":\"1801\",\"id\":\"160\",\"name\":\"濮阳市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":161,\"values\":{\"codes\":\"[\\\"许昌市\\\"]\",\"dataId\":\"1808\",\"id\":\"161\",\"name\":\"许昌市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":162,\"values\":{\"codes\":\"[\\\"漯河市\\\"]\",\"dataId\":\"1815\",\"id\":\"162\",\"name\":\"漯河市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":163,\"values\":{\"codes\":\"[\\\"三门峡市\\\"]\",\"dataId\":\"1821\",\"id\":\"163\",\"name\":\"三门峡市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":164,\"values\":{\"codes\":\"[\\\"南阳市\\\"]\",\"dataId\":\"1829\",\"id\":\"164\",\"name\":\"南阳市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":165,\"values\":{\"codes\":\"[\\\"商丘市\\\"]\",\"dataId\":\"1843\",\"id\":\"165\",\"name\":\"商丘市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":166,\"values\":{\"codes\":\"[\\\"信阳市\\\"]\",\"dataId\":\"1853\",\"id\":\"166\",\"name\":\"信阳市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":167,\"values\":{\"codes\":\"[\\\"周口市\\\"]\",\"dataId\":\"1864\",\"id\":\"167\",\"name\":\"周口市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":168,\"values\":{\"codes\":\"[\\\"驻马店市\\\"]\",\"dataId\":\"1875\",\"id\":\"168\",\"name\":\"驻马店市\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":169,\"values\":{\"codes\":\"[\\\"武汉市\\\"]\",\"dataId\":\"1887\",\"id\":\"169\",\"name\":\"武汉市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":170,\"values\":{\"codes\":\"[\\\"黄石市\\\"]\",\"dataId\":\"1900\",\"id\":\"170\",\"name\":\"黄石市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":171,\"values\":{\"codes\":\"[\\\"十堰市\\\"]\",\"dataId\":\"1907\",\"id\":\"171\",\"name\":\"十堰市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":172,\"values\":{\"codes\":\"[\\\"宜昌市\\\"]\",\"dataId\":\"1916\",\"id\":\"172\",\"name\":\"宜昌市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":173,\"values\":{\"codes\":\"[\\\"襄樊市\\\", \\\"襄阳市\\\", \\\"襄樊\\\", \\\"襄阳\\\"]\",\"dataId\":\"1930\",\"id\":\"173\",\"name\":\"襄阳市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":174,\"values\":{\"codes\":\"[\\\"鄂州市\\\"]\",\"dataId\":\"1940\",\"id\":\"174\",\"name\":\"鄂州市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":175,\"values\":{\"codes\":\"[\\\"荆门市\\\"]\",\"dataId\":\"1944\",\"id\":\"175\",\"name\":\"荆门市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":176,\"values\":{\"codes\":\"[\\\"孝感市\\\"]\",\"dataId\":\"1950\",\"id\":\"176\",\"name\":\"孝感市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":177,\"values\":{\"codes\":\"[\\\"荆州市\\\"]\",\"dataId\":\"1958\",\"id\":\"177\",\"name\":\"荆州市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":178,\"values\":{\"codes\":\"[\\\"黄冈市\\\"]\",\"dataId\":\"1967\",\"id\":\"178\",\"name\":\"黄冈市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":179,\"values\":{\"codes\":\"[\\\"咸宁市\\\"]\",\"dataId\":\"1978\",\"id\":\"179\",\"name\":\"咸宁市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":180,\"values\":{\"codes\":\"[\\\"随州市\\\"]\",\"dataId\":\"1985\",\"id\":\"180\",\"name\":\"随州市\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":181,\"values\":{\"codes\":\"[\\\"恩施土家族苗族自治州\\\", \\\"恩施\\\"]\",\"dataId\":\"1988\",\"id\":\"181\",\"name\":\"恩施土家族苗族自治州\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":182,\"values\":{\"codes\":\"[\\\"神农架\\\"]\",\"dataId\":\"1997\",\"id\":\"182\",\"name\":\"神农架\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":183,\"values\":{\"codes\":\"[\\\"长沙市\\\"]\",\"dataId\":\"2003\",\"id\":\"183\",\"name\":\"长沙市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":184,\"values\":{\"codes\":\"[\\\"株洲市\\\"]\",\"dataId\":\"2013\",\"id\":\"184\",\"name\":\"株洲市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":185,\"values\":{\"codes\":\"[\\\"湘潭市\\\"]\",\"dataId\":\"2023\",\"id\":\"185\",\"name\":\"湘潭市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":186,\"values\":{\"codes\":\"[\\\"衡阳市\\\"]\",\"dataId\":\"2029\",\"id\":\"186\",\"name\":\"衡阳市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":187,\"values\":{\"codes\":\"[\\\"邵阳市\\\"]\",\"dataId\":\"2042\",\"id\":\"187\",\"name\":\"邵阳市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":188,\"values\":{\"codes\":\"[\\\"岳阳市\\\"]\",\"dataId\":\"2055\",\"id\":\"188\",\"name\":\"岳阳市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":189,\"values\":{\"codes\":\"[\\\"常德市\\\"]\",\"dataId\":\"2065\",\"id\":\"189\",\"name\":\"常德市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":190,\"values\":{\"codes\":\"[\\\"张家界市\\\"]\",\"dataId\":\"2075\",\"id\":\"190\",\"name\":\"张家界市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":191,\"values\":{\"codes\":\"[\\\"益阳市\\\"]\",\"dataId\":\"2080\",\"id\":\"191\",\"name\":\"益阳市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":192,\"values\":{\"codes\":\"[\\\"郴州市\\\"]\",\"dataId\":\"2087\",\"id\":\"192\",\"name\":\"郴州市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":193,\"values\":{\"codes\":\"[\\\"永州市\\\"]\",\"dataId\":\"2099\",\"id\":\"193\",\"name\":\"永州市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":194,\"values\":{\"codes\":\"[\\\"怀化市\\\"]\",\"dataId\":\"2111\",\"id\":\"194\",\"name\":\"怀化市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":195,\"values\":{\"codes\":\"[\\\"娄底市\\\"]\",\"dataId\":\"2124\",\"id\":\"195\",\"name\":\"娄底市\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":196,\"values\":{\"codes\":\"[\\\"湘西土家族苗族自治州\\\", \\\"湘西\\\"]\",\"dataId\":\"2130\",\"id\":\"196\",\"name\":\"湘西土家族苗族自治州\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":197,\"values\":{\"codes\":\"[\\\"广州市\\\"]\",\"dataId\":\"2140\",\"id\":\"197\",\"name\":\"广州市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":198,\"values\":{\"codes\":\"[\\\"韶关市\\\"]\",\"dataId\":\"2152\",\"id\":\"198\",\"name\":\"韶关市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":199,\"values\":{\"codes\":\"[\\\"深圳市\\\"]\",\"dataId\":\"2163\",\"id\":\"199\",\"name\":\"深圳市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":200,\"values\":{\"codes\":\"[\\\"珠海市\\\"]\",\"dataId\":\"2169\",\"id\":\"200\",\"name\":\"珠海市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":201,\"values\":{\"codes\":\"[\\\"汕头市\\\"]\",\"dataId\":\"2173\",\"id\":\"201\",\"name\":\"汕头市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":202,\"values\":{\"codes\":\"[\\\"佛山市\\\"]\",\"dataId\":\"2181\",\"id\":\"202\",\"name\":\"佛山市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":203,\"values\":{\"codes\":\"[\\\"江门市\\\"]\",\"dataId\":\"2187\",\"id\":\"203\",\"name\":\"江门市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":204,\"values\":{\"codes\":\"[\\\"湛江市\\\"]\",\"dataId\":\"2195\",\"id\":\"204\",\"name\":\"湛江市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":205,\"values\":{\"codes\":\"[\\\"茂名市\\\"]\",\"dataId\":\"2205\",\"id\":\"205\",\"name\":\"茂名市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":206,\"values\":{\"codes\":\"[\\\"肇庆市\\\"]\",\"dataId\":\"2212\",\"id\":\"206\",\"name\":\"肇庆市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":207,\"values\":{\"codes\":\"[\\\"惠州市\\\"]\",\"dataId\":\"2221\",\"id\":\"207\",\"name\":\"惠州市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":208,\"values\":{\"codes\":\"[\\\"梅州市\\\"]\",\"dataId\":\"2227\",\"id\":\"208\",\"name\":\"梅州市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":209,\"values\":{\"codes\":\"[\\\"汕尾市\\\"]\",\"dataId\":\"2236\",\"id\":\"209\",\"name\":\"汕尾市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":210,\"values\":{\"codes\":\"[\\\"河源市\\\"]\",\"dataId\":\"2240\",\"id\":\"210\",\"name\":\"河源市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":211,\"values\":{\"codes\":\"[\\\"阳江市\\\"]\",\"dataId\":\"2247\",\"id\":\"211\",\"name\":\"阳江市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":212,\"values\":{\"codes\":\"[\\\"清远市\\\"]\",\"dataId\":\"2252\",\"id\":\"212\",\"name\":\"清远市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":213,\"values\":{\"codes\":\"[\\\"东莞市\\\"]\",\"dataId\":\"2261\",\"id\":\"213\",\"name\":\"东莞市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":214,\"values\":{\"codes\":\"[\\\"中山市\\\"]\",\"dataId\":\"2262\",\"id\":\"214\",\"name\":\"中山市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":215,\"values\":{\"codes\":\"[\\\"潮州市\\\"]\",\"dataId\":\"2263\",\"id\":\"215\",\"name\":\"潮州市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":216,\"values\":{\"codes\":\"[\\\"揭阳市\\\"]\",\"dataId\":\"2267\",\"id\":\"216\",\"name\":\"揭阳市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":217,\"values\":{\"codes\":\"[\\\"云浮市\\\"]\",\"dataId\":\"2273\",\"id\":\"217\",\"name\":\"云浮市\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":218,\"values\":{\"codes\":\"[\\\"南宁市\\\"]\",\"dataId\":\"2280\",\"id\":\"218\",\"name\":\"南宁市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":219,\"values\":{\"codes\":\"[\\\"柳州市\\\"]\",\"dataId\":\"2293\",\"id\":\"219\",\"name\":\"柳州市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":220,\"values\":{\"codes\":\"[\\\"桂林市\\\"]\",\"dataId\":\"2304\",\"id\":\"220\",\"name\":\"桂林市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":221,\"values\":{\"codes\":\"[\\\"梧州市\\\"]\",\"dataId\":\"2322\",\"id\":\"221\",\"name\":\"梧州市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":222,\"values\":{\"codes\":\"[\\\"北海市\\\"]\",\"dataId\":\"2330\",\"id\":\"222\",\"name\":\"北海市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":223,\"values\":{\"codes\":\"[\\\"防城港市\\\"]\",\"dataId\":\"2335\",\"id\":\"223\",\"name\":\"防城港市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":224,\"values\":{\"codes\":\"[\\\"钦州市\\\"]\",\"dataId\":\"2340\",\"id\":\"224\",\"name\":\"钦州市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":225,\"values\":{\"codes\":\"[\\\"贵港市\\\"]\",\"dataId\":\"2345\",\"id\":\"225\",\"name\":\"贵港市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":226,\"values\":{\"codes\":\"[\\\"玉林市\\\"]\",\"dataId\":\"2351\",\"id\":\"226\",\"name\":\"玉林市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":227,\"values\":{\"codes\":\"[\\\"百色市\\\"]\",\"dataId\":\"2358\",\"id\":\"227\",\"name\":\"百色市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":228,\"values\":{\"codes\":\"[\\\"贺州市\\\"]\",\"dataId\":\"2371\",\"id\":\"228\",\"name\":\"贺州市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":229,\"values\":{\"codes\":\"[\\\"河池市\\\"]\",\"dataId\":\"2376\",\"id\":\"229\",\"name\":\"河池市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":230,\"values\":{\"codes\":\"[\\\"来宾市\\\"]\",\"dataId\":\"2388\",\"id\":\"230\",\"name\":\"来宾市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":231,\"values\":{\"codes\":\"[\\\"崇左市\\\"]\",\"dataId\":\"2395\",\"id\":\"231\",\"name\":\"崇左市\",\"provinceId\":\"20\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":232,\"values\":{\"codes\":\"[\\\"海口市\\\"]\",\"dataId\":\"2404\",\"id\":\"232\",\"name\":\"海口市\",\"provinceId\":\"21\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":233,\"values\":{\"codes\":\"[\\\"三亚市\\\"]\",\"dataId\":\"2409\",\"id\":\"233\",\"name\":\"三亚市\",\"provinceId\":\"21\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":234,\"values\":{\"codes\":\"[\\\"重庆市\\\"]\",\"dataId\":\"2430\",\"id\":\"234\",\"name\":\"重庆市\",\"provinceId\":\"22\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":235,\"values\":{\"codes\":\"[\\\"成都市\\\"]\",\"dataId\":\"2470\",\"id\":\"235\",\"name\":\"成都市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":236,\"values\":{\"codes\":\"[\\\"自贡市\\\"]\",\"dataId\":\"2490\",\"id\":\"236\",\"name\":\"自贡市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":237,\"values\":{\"codes\":\"[\\\"攀枝花市\\\"]\",\"dataId\":\"2497\",\"id\":\"237\",\"name\":\"攀枝花市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":238,\"values\":{\"codes\":\"[\\\"泸州市\\\"]\",\"dataId\":\"2503\",\"id\":\"238\",\"name\":\"泸州市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":239,\"values\":{\"codes\":\"[\\\"德阳市\\\"]\",\"dataId\":\"2511\",\"id\":\"239\",\"name\":\"德阳市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":240,\"values\":{\"codes\":\"[\\\"绵阳市\\\"]\",\"dataId\":\"2518\",\"id\":\"240\",\"name\":\"绵阳市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":241,\"values\":{\"codes\":\"[\\\"广元市\\\"]\",\"dataId\":\"2528\",\"id\":\"241\",\"name\":\"广元市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":242,\"values\":{\"codes\":\"[\\\"遂宁市\\\"]\",\"dataId\":\"2535\",\"id\":\"242\",\"name\":\"遂宁市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":243,\"values\":{\"codes\":\"[\\\"内江市\\\"]\",\"dataId\":\"2541\",\"id\":\"243\",\"name\":\"内江市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":244,\"values\":{\"codes\":\"[\\\"乐山市\\\"]\",\"dataId\":\"2546\",\"id\":\"244\",\"name\":\"乐山市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":245,\"values\":{\"codes\":\"[\\\"南充市\\\"]\",\"dataId\":\"2557\",\"id\":\"245\",\"name\":\"南充市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":246,\"values\":{\"codes\":\"[\\\"眉山市\\\"]\",\"dataId\":\"2567\",\"id\":\"246\",\"name\":\"眉山市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":247,\"values\":{\"codes\":\"[\\\"宜宾市\\\"]\",\"dataId\":\"2574\",\"id\":\"247\",\"name\":\"宜宾市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":248,\"values\":{\"codes\":\"[\\\"广安市\\\"]\",\"dataId\":\"2585\",\"id\":\"248\",\"name\":\"广安市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":249,\"values\":{\"codes\":\"[\\\"达州市\\\"]\",\"dataId\":\"2591\",\"id\":\"249\",\"name\":\"达州市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":250,\"values\":{\"codes\":\"[\\\"雅安市\\\"]\",\"dataId\":\"2599\",\"id\":\"250\",\"name\":\"雅安市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":251,\"values\":{\"codes\":\"[\\\"巴中市\\\"]\",\"dataId\":\"2608\",\"id\":\"251\",\"name\":\"巴中市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":252,\"values\":{\"codes\":\"[\\\"资阳市\\\"]\",\"dataId\":\"2613\",\"id\":\"252\",\"name\":\"资阳市\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":253,\"values\":{\"codes\":\"[\\\"阿坝藏族羌族自治州\\\", \\\"阿坝\\\"]\",\"dataId\":\"2618\",\"id\":\"253\",\"name\":\"阿坝藏族羌族自治州\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":254,\"values\":{\"codes\":\"[\\\"甘孜藏族自治州\\\", \\\"甘孜\\\"]\",\"dataId\":\"2632\",\"id\":\"254\",\"name\":\"甘孜藏族自治州\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":255,\"values\":{\"codes\":\"[\\\"凉山彝族自治州\\\", \\\"凉山\\\"]\",\"dataId\":\"2651\",\"id\":\"255\",\"name\":\"凉山彝族自治州\",\"provinceId\":\"23\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":256,\"values\":{\"codes\":\"[\\\"贵阳市\\\"]\",\"dataId\":\"2670\",\"id\":\"256\",\"name\":\"贵阳市\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":257,\"values\":{\"codes\":\"[\\\"六盘水市\\\"]\",\"dataId\":\"2680\",\"id\":\"257\",\"name\":\"六盘水市\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":258,\"values\":{\"codes\":\"[\\\"遵义市\\\"]\",\"dataId\":\"2685\",\"id\":\"258\",\"name\":\"遵义市\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":259,\"values\":{\"codes\":\"[\\\"安顺市\\\"]\",\"dataId\":\"2700\",\"id\":\"259\",\"name\":\"安顺市\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":260,\"values\":{\"codes\":\"[\\\"铜仁地区\\\", \\\"铜仁\\\"]\",\"dataId\":\"2707\",\"id\":\"260\",\"name\":\"铜仁地区\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":261,\"values\":{\"codes\":\"[\\\"黔西南布依族苗族自治州\\\", \\\"黔西南\\\"]\",\"dataId\":\"2718\",\"id\":\"261\",\"name\":\"黔西南布依族苗族自治州\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":262,\"values\":{\"codes\":\"[\\\"毕节地区\\\", \\\"毕节\\\"]\",\"dataId\":\"2727\",\"id\":\"262\",\"name\":\"毕节地区\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":263,\"values\":{\"codes\":\"[\\\"黔东南苗族侗族自治州\\\", \\\"黔东南\\\"]\",\"dataId\":\"2736\",\"id\":\"263\",\"name\":\"黔东南苗族侗族自治州\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":264,\"values\":{\"codes\":\"[\\\"黔南布依族苗族自治州\\\", \\\"黔南\\\"]\",\"dataId\":\"2753\",\"id\":\"264\",\"name\":\"黔南布依族苗族自治州\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":265,\"values\":{\"codes\":\"[\\\"昆明市\\\"]\",\"dataId\":\"2767\",\"id\":\"265\",\"name\":\"昆明市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":266,\"values\":{\"codes\":\"[\\\"曲靖市\\\"]\",\"dataId\":\"2782\",\"id\":\"266\",\"name\":\"曲靖市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":267,\"values\":{\"codes\":\"[\\\"玉溪市\\\"]\",\"dataId\":\"2792\",\"id\":\"267\",\"name\":\"玉溪市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":268,\"values\":{\"codes\":\"[\\\"保山市\\\"]\",\"dataId\":\"2802\",\"id\":\"268\",\"name\":\"保山市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":269,\"values\":{\"codes\":\"[\\\"昭通市\\\"]\",\"dataId\":\"2808\",\"id\":\"269\",\"name\":\"昭通市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":270,\"values\":{\"codes\":\"[\\\"丽江市\\\"]\",\"dataId\":\"2820\",\"id\":\"270\",\"name\":\"丽江市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":271,\"values\":{\"codes\":\"[\\\"思茅市\\\"]\",\"dataId\":\"2826\",\"id\":\"271\",\"name\":\"思茅市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":272,\"values\":{\"codes\":\"[\\\"临沧市\\\"]\",\"dataId\":\"2837\",\"id\":\"272\",\"name\":\"临沧市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":273,\"values\":{\"codes\":\"[\\\"楚雄彝族自治州\\\", \\\"楚雄\\\"]\",\"dataId\":\"2846\",\"id\":\"273\",\"name\":\"楚雄彝族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":274,\"values\":{\"codes\":\"[\\\"红河哈尼族彝族自治州\\\", \\\"红河\\\"]\",\"dataId\":\"2857\",\"id\":\"274\",\"name\":\"红河哈尼族彝族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":275,\"values\":{\"codes\":\"[\\\"文山壮族苗族自治州\\\", \\\"文山\\\"]\",\"dataId\":\"2871\",\"id\":\"275\",\"name\":\"文山壮族苗族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":276,\"values\":{\"codes\":\"[\\\"西双版纳傣族自治州\\\", \\\"西双版纳\\\"]\",\"dataId\":\"2880\",\"id\":\"276\",\"name\":\"西双版纳傣族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":277,\"values\":{\"codes\":\"[\\\"大理白族自治州\\\", \\\"大理\\\"]\",\"dataId\":\"2884\",\"id\":\"277\",\"name\":\"大理白族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":278,\"values\":{\"codes\":\"[\\\"德宏傣族景颇族自治州\\\", \\\"德宏\\\"]\",\"dataId\":\"2897\",\"id\":\"278\",\"name\":\"德宏傣族景颇族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":279,\"values\":{\"codes\":\"[\\\"怒江傈僳族自治州\\\", \\\"怒江\\\"]\",\"dataId\":\"2903\",\"id\":\"279\",\"name\":\"怒江傈僳族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":280,\"values\":{\"codes\":\"[\\\"迪庆藏族自治州\\\", \\\"迪庆\\\"]\",\"dataId\":\"2908\",\"id\":\"280\",\"name\":\"迪庆藏族自治州\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":281,\"values\":{\"codes\":\"[\\\"拉萨市\\\"]\",\"dataId\":\"2913\",\"id\":\"281\",\"name\":\"拉萨市\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":282,\"values\":{\"codes\":\"[\\\"昌都地区\\\", \\\"昌都\\\"]\",\"dataId\":\"2922\",\"id\":\"282\",\"name\":\"昌都地区\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":283,\"values\":{\"codes\":\"[\\\"山南地区\\\", \\\"山南\\\"]\",\"dataId\":\"2934\",\"id\":\"283\",\"name\":\"山南地区\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":284,\"values\":{\"codes\":\"[\\\"日喀则地区\\\", \\\"日喀则\\\"]\",\"dataId\":\"2947\",\"id\":\"284\",\"name\":\"日喀则地区\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":285,\"values\":{\"codes\":\"[\\\"那曲地区\\\", \\\"那曲\\\"]\",\"dataId\":\"2966\",\"id\":\"285\",\"name\":\"那曲地区\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":286,\"values\":{\"codes\":\"[\\\"阿里地区\\\"]\",\"dataId\":\"2977\",\"id\":\"286\",\"name\":\"阿里地区\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":287,\"values\":{\"codes\":\"[\\\"林芝地区\\\", \\\"林芝\\\"]\",\"dataId\":\"2985\",\"id\":\"287\",\"name\":\"林芝地区\",\"provinceId\":\"26\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":288,\"values\":{\"codes\":\"[\\\"西安市\\\"]\",\"dataId\":\"2994\",\"id\":\"288\",\"name\":\"西安市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":289,\"values\":{\"codes\":\"[\\\"铜川市\\\"]\",\"dataId\":\"3006\",\"id\":\"289\",\"name\":\"铜川市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":290,\"values\":{\"codes\":\"[\\\"宝鸡市\\\"]\",\"dataId\":\"3011\",\"id\":\"290\",\"name\":\"宝鸡市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":291,\"values\":{\"codes\":\"[\\\"咸阳市\\\"]\",\"dataId\":\"3024\",\"id\":\"291\",\"name\":\"咸阳市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":292,\"values\":{\"codes\":\"[\\\"渭南市\\\"]\",\"dataId\":\"3039\",\"id\":\"292\",\"name\":\"渭南市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":293,\"values\":{\"codes\":\"[\\\"延安市\\\"]\",\"dataId\":\"3051\",\"id\":\"293\",\"name\":\"延安市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":294,\"values\":{\"codes\":\"[\\\"汉中市\\\"]\",\"dataId\":\"3065\",\"id\":\"294\",\"name\":\"汉中市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":295,\"values\":{\"codes\":\"[\\\"榆林市\\\"]\",\"dataId\":\"3077\",\"id\":\"295\",\"name\":\"榆林市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":296,\"values\":{\"codes\":\"[\\\"安康市\\\"]\",\"dataId\":\"3090\",\"id\":\"296\",\"name\":\"安康市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":297,\"values\":{\"codes\":\"[\\\"商洛市\\\"]\",\"dataId\":\"3101\",\"id\":\"297\",\"name\":\"商洛市\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":298,\"values\":{\"codes\":\"[\\\"兰州市\\\"]\",\"dataId\":\"3110\",\"id\":\"298\",\"name\":\"兰州市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":299,\"values\":{\"codes\":\"[\\\"嘉峪关市\\\"]\",\"dataId\":\"3118\",\"id\":\"299\",\"name\":\"嘉峪关市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":300,\"values\":{\"codes\":\"[\\\"金昌市\\\"]\",\"dataId\":\"3119\",\"id\":\"300\",\"name\":\"金昌市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":301,\"values\":{\"codes\":\"[\\\"白银市\\\"]\",\"dataId\":\"3122\",\"id\":\"301\",\"name\":\"白银市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":302,\"values\":{\"codes\":\"[\\\"天水市\\\"]\",\"dataId\":\"3128\",\"id\":\"302\",\"name\":\"天水市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":303,\"values\":{\"codes\":\"[\\\"武威市\\\"]\",\"dataId\":\"3136\",\"id\":\"303\",\"name\":\"武威市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":304,\"values\":{\"codes\":\"[\\\"张掖市\\\"]\",\"dataId\":\"3141\",\"id\":\"304\",\"name\":\"张掖市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":305,\"values\":{\"codes\":\"[\\\"平凉市\\\"]\",\"dataId\":\"3148\",\"id\":\"305\",\"name\":\"平凉市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":306,\"values\":{\"codes\":\"[\\\"酒泉市\\\"]\",\"dataId\":\"3156\",\"id\":\"306\",\"name\":\"酒泉市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":307,\"values\":{\"codes\":\"[\\\"庆阳市\\\"]\",\"dataId\":\"3164\",\"id\":\"307\",\"name\":\"庆阳市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":308,\"values\":{\"codes\":\"[\\\"定西市\\\"]\",\"dataId\":\"3173\",\"id\":\"308\",\"name\":\"定西市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":309,\"values\":{\"codes\":\"[\\\"陇南市\\\"]\",\"dataId\":\"3181\",\"id\":\"309\",\"name\":\"陇南市\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":310,\"values\":{\"codes\":\"[\\\"临夏回族自治州\\\", \\\"临夏\\\"]\",\"dataId\":\"3191\",\"id\":\"310\",\"name\":\"临夏回族自治州\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":311,\"values\":{\"codes\":\"[\\\"甘南藏族自治州\\\", \\\"甘南\\\"]\",\"dataId\":\"3200\",\"id\":\"311\",\"name\":\"甘南藏族自治州\",\"provinceId\":\"28\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":312,\"values\":{\"codes\":\"[\\\"西宁市\\\"]\",\"dataId\":\"3210\",\"id\":\"312\",\"name\":\"西宁市\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":313,\"values\":{\"codes\":\"[\\\"海东地区\\\", \\\"海东\\\"]\",\"dataId\":\"3217\",\"id\":\"313\",\"name\":\"海东地区\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":314,\"values\":{\"codes\":\"[\\\"海北藏族自治州\\\", \\\"海北\\\"]\",\"dataId\":\"3224\",\"id\":\"314\",\"name\":\"海北藏族自治州\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":315,\"values\":{\"codes\":\"[\\\"黄南藏族自治州\\\", \\\"黄南\\\"]\",\"dataId\":\"3229\",\"id\":\"315\",\"name\":\"黄南藏族自治州\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":316,\"values\":{\"codes\":\"[\\\"海南藏族自治州\\\", \\\"海南\\\"]\",\"dataId\":\"3234\",\"id\":\"316\",\"name\":\"海南藏族自治州\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":317,\"values\":{\"codes\":\"[\\\"果洛藏族自治州\\\", \\\"果洛\\\"]\",\"dataId\":\"3240\",\"id\":\"317\",\"name\":\"果洛藏族自治州\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":318,\"values\":{\"codes\":\"[\\\"玉树藏族自治州\\\", \\\"玉树\\\"]\",\"dataId\":\"3247\",\"id\":\"318\",\"name\":\"玉树藏族自治州\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":319,\"values\":{\"codes\":\"[\\\"海西蒙古族藏族自治州\\\", \\\"海西\\\"]\",\"dataId\":\"3254\",\"id\":\"319\",\"name\":\"海西蒙古族藏族自治州\",\"provinceId\":\"29\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":320,\"values\":{\"codes\":\"[\\\"银川市\\\"]\",\"dataId\":\"3261\",\"id\":\"320\",\"name\":\"银川市\",\"provinceId\":\"30\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":321,\"values\":{\"codes\":\"[\\\"石嘴山市\\\"]\",\"dataId\":\"3268\",\"id\":\"321\",\"name\":\"石嘴山市\",\"provinceId\":\"30\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":322,\"values\":{\"codes\":\"[\\\"吴忠市\\\"]\",\"dataId\":\"3272\",\"id\":\"322\",\"name\":\"吴忠市\",\"provinceId\":\"30\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":323,\"values\":{\"codes\":\"[\\\"固原市\\\"]\",\"dataId\":\"3277\",\"id\":\"323\",\"name\":\"固原市\",\"provinceId\":\"30\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":324,\"values\":{\"codes\":\"[\\\"中卫市\\\"]\",\"dataId\":\"3283\",\"id\":\"324\",\"name\":\"中卫市\",\"provinceId\":\"30\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":325,\"values\":{\"codes\":\"[\\\"乌鲁木齐市\\\"]\",\"dataId\":\"3288\",\"id\":\"325\",\"name\":\"乌鲁木齐市\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":326,\"values\":{\"codes\":\"[\\\"克拉玛依市\\\"]\",\"dataId\":\"3295\",\"id\":\"326\",\"name\":\"克拉玛依市\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":327,\"values\":{\"codes\":\"[\\\"吐鲁番地区\\\", \\\"吐鲁番\\\"]\",\"dataId\":\"3300\",\"id\":\"327\",\"name\":\"吐鲁番地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":328,\"values\":{\"codes\":\"[\\\"哈密地区\\\", \\\"哈密\\\"]\",\"dataId\":\"3304\",\"id\":\"328\",\"name\":\"哈密地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":329,\"values\":{\"codes\":\"[\\\"昌吉回族自治州\\\", \\\"昌吉\\\"]\",\"dataId\":\"3308\",\"id\":\"329\",\"name\":\"昌吉回族自治州\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":330,\"values\":{\"codes\":\"[\\\"博尔塔拉蒙古自治州\\\", \\\"博尔塔拉\\\"]\",\"dataId\":\"3317\",\"id\":\"330\",\"name\":\"博尔塔拉蒙古自治州\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":331,\"values\":{\"codes\":\"[\\\"巴音郭楞蒙古自治州\\\", \\\"巴音郭楞\\\"]\",\"dataId\":\"3321\",\"id\":\"331\",\"name\":\"巴音郭楞蒙古自治州\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":332,\"values\":{\"codes\":\"[\\\"阿克苏地区\\\", \\\"阿克苏\\\"]\",\"dataId\":\"3331\",\"id\":\"332\",\"name\":\"阿克苏地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":333,\"values\":{\"codes\":\"[\\\"克孜勒苏柯尔克孜自治州\\\", \\\"克孜勒苏\\\"]\",\"dataId\":\"3341\",\"id\":\"333\",\"name\":\"克孜勒苏柯尔克孜自治州\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":334,\"values\":{\"codes\":\"[\\\"喀什地区\\\", \\\"喀什\\\"]\",\"dataId\":\"3346\",\"id\":\"334\",\"name\":\"喀什地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":335,\"values\":{\"codes\":\"[\\\"和田地区\\\", \\\"和田\\\"]\",\"dataId\":\"3359\",\"id\":\"335\",\"name\":\"和田地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":336,\"values\":{\"codes\":\"[\\\"伊犁哈萨克自治州\\\", \\\"伊犁\\\"]\",\"dataId\":\"3368\",\"id\":\"336\",\"name\":\"伊犁哈萨克自治州\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":337,\"values\":{\"codes\":\"[\\\"塔城地区\\\", \\\"塔城\\\"]\",\"dataId\":\"3379\",\"id\":\"337\",\"name\":\"塔城地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":338,\"values\":{\"codes\":\"[\\\"阿勒泰地区\\\", \\\"阿勒泰\\\"]\",\"dataId\":\"3387\",\"id\":\"338\",\"name\":\"阿勒泰地区\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":339,\"values\":{\"codes\":\"[\\\"石河子市\\\"]\",\"dataId\":\"3395\",\"id\":\"339\",\"name\":\"石河子市\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":340,\"values\":{\"codes\":\"[\\\"阿拉尔市\\\"]\",\"dataId\":\"3396\",\"id\":\"340\",\"name\":\"阿拉尔市\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":341,\"values\":{\"codes\":\"[\\\"图木舒克市\\\"]\",\"dataId\":\"3397\",\"id\":\"341\",\"name\":\"图木舒克市\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":342,\"values\":{\"codes\":\"[\\\"五家渠市\\\"]\",\"dataId\":\"3398\",\"id\":\"342\",\"name\":\"五家渠市\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":343,\"values\":{\"codes\":\"[\\\"香港特别行政区\\\"]\",\"dataId\":\"3400\",\"id\":\"343\",\"name\":\"香港特别行政区\",\"provinceId\":\"32\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":344,\"values\":{\"codes\":\"[\\\"澳门特别行政区\\\"]\",\"dataId\":\"3402\",\"id\":\"344\",\"name\":\"澳门特别行政区\",\"provinceId\":\"33\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":345,\"values\":{\"codes\":\"[\\\"台北市\\\", \\\"台北\\\"]\",\"dataId\":\"3404\",\"id\":\"345\",\"name\":\"台北市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":346,\"values\":{\"codes\":\"[\\\"自治区直辖县级行政区划\\\"]\",\"dataId\":\"3426\",\"id\":\"346\",\"name\":\"自治区直辖县级行政区划\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":347,\"values\":{\"codes\":\"[\\\"省直辖县级行政区划\\\"]\",\"dataId\":\"3427\",\"id\":\"347\",\"name\":\"省直辖县级行政区划\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":348,\"values\":{\"codes\":\"[\\\"省直辖县级行政区划\\\"]\",\"dataId\":\"3428\",\"id\":\"348\",\"name\":\"省直辖县级行政区划\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":349,\"values\":{\"codes\":\"[\\\"普洱市\\\"]\",\"dataId\":\"3429\",\"id\":\"349\",\"name\":\"普洱市\",\"provinceId\":\"25\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":350,\"values\":{\"codes\":\"[\\\"省直辖县级行政区划\\\"]\",\"dataId\":\"3430\",\"id\":\"350\",\"name\":\"省直辖县级行政区划\",\"provinceId\":\"21\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":351,\"values\":{\"codes\":\"[\\\"湖北省省直辖县级行政区划\\\"]\",\"dataId\":\"3446\",\"id\":\"351\",\"name\":\"湖北省省直辖县级行政区划\",\"provinceId\":\"17\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":352,\"values\":{\"codes\":\"[\\\"河南省省直辖县级行政区划\\\"]\",\"dataId\":\"3447\",\"id\":\"352\",\"name\":\"河南省省直辖县级行政区划\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":353,\"values\":{\"codes\":\"[\\\"海南省省直辖县级行政区划\\\"]\",\"dataId\":\"3448\",\"id\":\"353\",\"name\":\"海南省省直辖县级行政区划\",\"provinceId\":\"21\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":354,\"values\":{\"codes\":\"[\\\"新疆维吾尔自治区省直辖县级行政区划\\\"]\",\"dataId\":\"3449\",\"id\":\"354\",\"name\":\"新疆维吾尔自治区省直辖县级行政区划\",\"provinceId\":\"31\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":355,\"values\":{\"codes\":\"[\\\"宁夏回族自治区省直辖县级行政区划\\\"]\",\"dataId\":\"3450\",\"id\":\"355\",\"name\":\"宁夏回族自治区省直辖县级行政区划\",\"provinceId\":\"30\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":356,\"values\":{\"codes\":\"[\\\"辽宁省省直辖县级行政区划\\\"]\",\"dataId\":\"3451\",\"id\":\"356\",\"name\":\"辽宁省省直辖县级行政区划\",\"provinceId\":\"6\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":357,\"values\":{\"codes\":\"[\\\"广东省省直辖县级行政区划\\\"]\",\"dataId\":\"3452\",\"id\":\"357\",\"name\":\"广东省省直辖县级行政区划\",\"provinceId\":\"19\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":358,\"values\":{\"codes\":\"[\\\"浙江省省直辖县级行政区划\\\"]\",\"dataId\":\"3453\",\"id\":\"358\",\"name\":\"浙江省省直辖县级行政区划\",\"provinceId\":\"11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":359,\"values\":{\"codes\":\"[\\\"吉林省省直辖县级行政区划\\\"]\",\"dataId\":\"3454\",\"id\":\"359\",\"name\":\"吉林省省直辖县级行政区划\",\"provinceId\":\"7\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":360,\"values\":{\"codes\":\"[\\\"安徽省省直辖县级行政区划\\\"]\",\"dataId\":\"3455\",\"id\":\"360\",\"name\":\"安徽省省直辖县级行政区划\",\"provinceId\":\"12\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":361,\"values\":{\"codes\":\"[\\\"陕西省省直辖县级行政区划\\\"]\",\"dataId\":\"3456\",\"id\":\"361\",\"name\":\"陕西省省直辖县级行政区划\",\"provinceId\":\"27\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":362,\"values\":{\"codes\":\"[\\\"河北省省直辖县级行政区划\\\"]\",\"dataId\":\"3457\",\"id\":\"362\",\"name\":\"河北省省直辖县级行政区划\",\"provinceId\":\"3\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":363,\"values\":{\"codes\":\"[\\\"江苏省省直辖县级行政区划\\\"]\",\"dataId\":\"3458\",\"id\":\"363\",\"name\":\"江苏省省直辖县级行政区划\",\"provinceId\":\"10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":364,\"values\":{\"codes\":\"[\\\"黑龙江省省直辖县级行政区划\\\"]\",\"dataId\":\"3459\",\"id\":\"364\",\"name\":\"黑龙江省省直辖县级行政区划\",\"provinceId\":\"8\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":365,\"values\":{\"codes\":\"[\\\"江西省省直辖县级行政区划\\\"]\",\"dataId\":\"3460\",\"id\":\"365\",\"name\":\"江西省省直辖县级行政区划\",\"provinceId\":\"14\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":366,\"values\":{\"codes\":\"[\\\"贵州省省直辖县级行政区划\\\"]\",\"dataId\":\"3461\",\"id\":\"366\",\"name\":\"贵州省省直辖县级行政区划\",\"provinceId\":\"24\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":367,\"values\":{\"codes\":\"[\\\"湖南省省直辖县级行政区划\\\"]\",\"dataId\":\"3462\",\"id\":\"367\",\"name\":\"湖南省省直辖县级行政区划\",\"provinceId\":\"18\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":368,\"values\":{\"codes\":\"[\\\"新北市\\\", \\\"新北\\\"]\",\"dataId\":\"\",\"id\":\"368\",\"name\":\"新北市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":369,\"values\":{\"codes\":\"[\\\"桃园市\\\", \\\"桃园\\\"]\",\"dataId\":\"\",\"id\":\"369\",\"name\":\"桃园市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":370,\"values\":{\"codes\":\"[\\\"台中市\\\", \\\"台中\\\"]\",\"dataId\":\"\",\"id\":\"370\",\"name\":\"台中市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":371,\"values\":{\"codes\":\"[\\\"台南市\\\", \\\"台南\\\"]\",\"dataId\":\"\",\"id\":\"371\",\"name\":\"台南市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":372,\"values\":{\"codes\":\"[\\\"高雄市\\\", \\\"高雄\\\"]\",\"dataId\":\"\",\"id\":\"372\",\"name\":\"高雄市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":373,\"values\":{\"codes\":\"[\\\"宜兰县\\\", \\\"宜兰\\\"]\",\"dataId\":\"\",\"id\":\"373\",\"name\":\"宜兰县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":374,\"values\":{\"codes\":\"[\\\"新竹县\\\", \\\"新竹\\\"]\",\"dataId\":\"\",\"id\":\"374\",\"name\":\"新竹县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":375,\"values\":{\"codes\":\"[\\\"苗栗县\\\", \\\"苗栗\\\"]\",\"dataId\":\"\",\"id\":\"375\",\"name\":\"苗栗县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":376,\"values\":{\"codes\":\"[\\\"彰化县\\\", \\\"彰化\\\"]\",\"dataId\":\"\",\"id\":\"376\",\"name\":\"彰化县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":377,\"values\":{\"codes\":\"[\\\"南投县\\\", \\\"南投\\\"]\",\"dataId\":\"\",\"id\":\"377\",\"name\":\"南投县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":378,\"values\":{\"codes\":\"[\\\"云林县\\\", \\\"云林\\\"]\",\"dataId\":\"\",\"id\":\"378\",\"name\":\"云林县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":379,\"values\":{\"codes\":\"[\\\"嘉义县\\\", \\\"嘉义\\\"]\",\"dataId\":\"\",\"id\":\"379\",\"name\":\"嘉义县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":380,\"values\":{\"codes\":\"[\\\"屏东县\\\", \\\"屏东\\\"]\",\"dataId\":\"\",\"id\":\"380\",\"name\":\"屏东县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":381,\"values\":{\"codes\":\"[\\\"花莲县\\\", \\\"花莲\\\"]\",\"dataId\":\"\",\"id\":\"381\",\"name\":\"花莲县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":382,\"values\":{\"codes\":\"[\\\"台东县\\\", \\\"台东\\\"]\",\"dataId\":\"\",\"id\":\"382\",\"name\":\"台东县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":383,\"values\":{\"codes\":\"[\\\"澎湖县\\\", \\\"澎湖\\\"]\",\"dataId\":\"\",\"id\":\"383\",\"name\":\"澎湖县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":384,\"values\":{\"codes\":\"[\\\"基隆市\\\", \\\"基隆\\\"]\",\"dataId\":\"\",\"id\":\"384\",\"name\":\"基隆市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":385,\"values\":{\"codes\":\"[\\\"新竹市\\\", \\\"新竹\\\"]\",\"dataId\":\"\",\"id\":\"385\",\"name\":\"新竹市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":386,\"values\":{\"codes\":\"[\\\"嘉义市\\\", \\\"嘉义\\\"]\",\"dataId\":\"\",\"id\":\"386\",\"name\":\"嘉义市\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":387,\"values\":{\"codes\":\"[\\\"金门县\\\", \\\"金门\\\"]\",\"dataId\":\"\",\"id\":\"387\",\"name\":\"金门县\",\"provinceId\":\"34\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":388,\"values\":{\"codes\":\"[\\\"济源县\\\", \\\"济源\\\"]\",\"dataId\":\"\",\"id\":\"388\",\"name\":\"济源县\",\"provinceId\":\"16\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":389,\"values\":{\"codes\":\"[\\\"儋州市\\\", \\\"儋州\\\"]\",\"dataId\":\"\",\"id\":\"389\",\"name\":\"儋州市\",\"provinceId\":\"21\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":390,\"values\":{\"codes\":\"[\\\"荃湾\\\"]\",\"dataId\":\"\",\"id\":\"390\",\"name\":\"荃湾\",\"provinceId\":\"32\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":391,\"values\":{\"codes\":\"[\\\"沙田\\\"]\",\"dataId\":\"\",\"id\":\"391\",\"name\":\"沙田\",\"provinceId\":\"32\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1776,\"values\":{\"codes\":\"[\\\"墨尔本\\\"]\",\"dataId\":\"\",\"id\":\"1776\",\"name\":\"墨尔本\",\"provinceId\":\"35\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1777,\"values\":{\"codes\":\"[\\\"曼谷\\\"]\",\"dataId\":\"\",\"id\":\"1777\",\"name\":\"曼谷\",\"provinceId\":\"185\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1778,\"values\":{\"codes\":\"[\\\"东京\\\"]\",\"dataId\":\"\",\"id\":\"1778\",\"name\":\"东京\",\"provinceId\":\"210\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1779,\"values\":{\"codes\":\"[\\\"钦奈\\\"]\",\"dataId\":\"\",\"id\":\"1779\",\"name\":\"钦奈\",\"provinceId\":\"241\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1780,\"values\":{\"codes\":\"[\\\"浦那\\\"]\",\"dataId\":\"\",\"id\":\"1780\",\"name\":\"浦那\",\"provinceId\":\"242\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1781,\"values\":{\"codes\":\"[\\\"孟买\\\"]\",\"dataId\":\"\",\"id\":\"1781\",\"name\":\"孟买\",\"provinceId\":\"242\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1782,\"values\":{\"codes\":\"[\\\"海得拉巴\\\"]\",\"dataId\":\"\",\"id\":\"1782\",\"name\":\"海得拉巴\",\"provinceId\":\"243\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1783,\"values\":{\"codes\":\"[\\\"加尔各答\\\"]\",\"dataId\":\"\",\"id\":\"1783\",\"name\":\"加尔各答\",\"provinceId\":\"244\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1784,\"values\":{\"codes\":\"[\\\"诺伊达\\\"]\",\"dataId\":\"\",\"id\":\"1784\",\"name\":\"诺伊达\",\"provinceId\":\"246\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1785,\"values\":{\"codes\":\"[\\\"西隆\\\"]\",\"dataId\":\"\",\"id\":\"1785\",\"name\":\"西隆\",\"provinceId\":\"247\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1786,\"values\":{\"codes\":\"[\\\"首尔\\\"]\",\"dataId\":\"\",\"id\":\"1786\",\"name\":\"首尔\",\"provinceId\":\"41\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1787,\"values\":{\"codes\":\"[\\\"哥印拜陀\\\"]\",\"dataId\":\"\",\"id\":\"1787\",\"name\":\"哥印拜陀\",\"provinceId\":\"241\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1788,\"values\":{\"codes\":\"[\\\"印多尔\\\"]\",\"dataId\":\"\",\"id\":\"1788\",\"name\":\"印多尔\",\"provinceId\":\"268\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1789,\"values\":{\"codes\":\"[\\\"班加罗尔\\\"]\",\"dataId\":\"\",\"id\":\"1789\",\"name\":\"班加罗尔\",\"provinceId\":\"39\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1790,\"values\":{\"codes\":\"[\\\"勒克瑙\\\"]\",\"dataId\":\"\",\"id\":\"1790\",\"name\":\"勒克瑙\",\"provinceId\":\"246\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1791,\"values\":{\"codes\":\"[\\\"坎普尔\\\"]\",\"dataId\":\"\",\"id\":\"1791\",\"name\":\"坎普尔\",\"provinceId\":\"246\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1792,\"values\":{\"codes\":\"[\\\"苏拉特\\\"]\",\"dataId\":\"\",\"id\":\"1792\",\"name\":\"苏拉特\",\"provinceId\":\"269\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1793,\"values\":{\"codes\":\"[\\\"德里\\\"]\",\"dataId\":\"\",\"id\":\"1793\",\"name\":\"德里\",\"provinceId\":\"271\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1794,\"values\":{\"codes\":\"[\\\"甘地讷格尔\\\"]\",\"dataId\":\"\",\"id\":\"1794\",\"name\":\"甘地讷格尔\",\"provinceId\":\"269\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1795,\"values\":{\"codes\":\"[\\\"阿穆达巴\\\"]\",\"dataId\":\"\",\"id\":\"1795\",\"name\":\"阿穆达巴\",\"provinceId\":\"269\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1796,\"values\":{\"codes\":\"[\\\"博帕尔\\\"]\",\"dataId\":\"\",\"id\":\"1796\",\"name\":\"博帕尔\",\"provinceId\":\"268\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1797,\"values\":{\"codes\":\"[\\\"古尔冈\\\"]\",\"dataId\":\"\",\"id\":\"1797\",\"name\":\"古尔冈\",\"provinceId\":\"270\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1798,\"values\":{\"codes\":\"[\\\"维沙卡帕特南\\\"]\",\"dataId\":\"\",\"id\":\"1798\",\"name\":\"维沙卡帕特南\",\"provinceId\":\"243\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1799,\"values\":{\"codes\":\"[\\\"密拉特\\\"]\",\"dataId\":\"\",\"id\":\"1799\",\"name\":\"密拉特\",\"provinceId\":\"246\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1800,\"values\":{\"codes\":\"[\\\"斋浦尔\\\"]\",\"dataId\":\"\",\"id\":\"1800\",\"name\":\"斋浦尔\",\"provinceId\":\"273\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1801,\"values\":{\"codes\":\"[\\\"新德里\\\"]\",\"dataId\":\"\",\"id\":\"1801\",\"name\":\"新德里\",\"provinceId\":\"271\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1802,\"values\":{\"codes\":\"[\\\"那格浦尔\\\"]\",\"dataId\":\"\",\"id\":\"1802\",\"name\":\"那格浦尔\",\"provinceId\":\"242\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1803,\"values\":{\"codes\":\"[\\\"圣何塞\\\"]\",\"dataId\":\"\",\"id\":\"1803\",\"name\":\"圣何塞\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1804,\"values\":{\"codes\":\"[\\\"大阪\\\"]\",\"dataId\":\"\",\"id\":\"1804\",\"name\":\"大阪\",\"provinceId\":\"278\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1805,\"values\":{\"codes\":\"[\\\"悉尼\\\"]\",\"dataId\":\"\",\"id\":\"1805\",\"name\":\"悉尼\",\"provinceId\":\"299\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1806,\"values\":{\"codes\":\"[\\\"胡志明\\\"]\",\"dataId\":\"\",\"id\":\"1806\",\"name\":\"胡志明\",\"provinceId\":\"304\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1807,\"values\":{\"codes\":\"[\\\"布里斯班\\\"]\",\"dataId\":\"\",\"id\":\"1807\",\"name\":\"布里斯班\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1808,\"values\":{\"codes\":\"[\\\"阿德莱德\\\"]\",\"dataId\":\"\",\"id\":\"1808\",\"name\":\"阿德莱德\",\"provinceId\":\"349\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1809,\"values\":{\"codes\":\"[\\\"霍巴特\\\"]\",\"dataId\":\"\",\"id\":\"1809\",\"name\":\"霍巴特\",\"provinceId\":\"351\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1810,\"values\":{\"codes\":\"[\\\"珀斯\\\"]\",\"dataId\":\"\",\"id\":\"1810\",\"name\":\"珀斯\",\"provinceId\":\"350\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1811,\"values\":{\"codes\":\"[\\\"纳西克\\\"]\",\"dataId\":\"\",\"id\":\"1811\",\"name\":\"纳西克\",\"provinceId\":\"242\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1812,\"values\":{\"codes\":\"[\\\"斯利那加\\\"]\",\"dataId\":\"\",\"id\":\"1812\",\"name\":\"斯利那加\",\"provinceId\":\"357\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1813,\"values\":{\"codes\":\"[\\\"巴特那\\\"]\",\"dataId\":\"\",\"id\":\"1813\",\"name\":\"巴特那\",\"provinceId\":\"359\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1814,\"values\":{\"codes\":\"[\\\"布拉格\\\"]\",\"dataId\":\"\",\"id\":\"1814\",\"name\":\"布拉格\",\"provinceId\":\"46\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1815,\"values\":{\"codes\":\"[\\\"法兰克福\\\"]\",\"dataId\":\"\",\"id\":\"1815\",\"name\":\"法兰克福\",\"provinceId\":\"47\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1816,\"values\":{\"codes\":\"[\\\"阿姆斯特丹\\\"]\",\"dataId\":\"\",\"id\":\"1816\",\"name\":\"阿姆斯特丹\",\"provinceId\":\"48\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1817,\"values\":{\"codes\":\"[\\\"马德里\\\"]\",\"dataId\":\"\",\"id\":\"1817\",\"name\":\"马德里\",\"provinceId\":\"49\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1818,\"values\":{\"codes\":\"[\\\"伦敦\\\"]\",\"dataId\":\"\",\"id\":\"1818\",\"name\":\"伦敦\",\"provinceId\":\"51\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1819,\"values\":{\"codes\":\"[\\\"米兰\\\"]\",\"dataId\":\"\",\"id\":\"1819\",\"name\":\"米兰\",\"provinceId\":\"52\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1820,\"values\":{\"codes\":\"[\\\"莫斯科\\\"]\",\"dataId\":\"\",\"id\":\"1820\",\"name\":\"莫斯科\",\"provinceId\":\"57\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1821,\"values\":{\"codes\":\"[\\\"约翰内斯堡\\\"]\",\"dataId\":\"\",\"id\":\"1821\",\"name\":\"约翰内斯堡\",\"provinceId\":\"59\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1822,\"values\":{\"codes\":\"[\\\"圣保罗\\\"]\",\"dataId\":\"\",\"id\":\"1822\",\"name\":\"圣保罗\",\"provinceId\":\"61\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1823,\"values\":{\"codes\":\"[\\\"阿什本\\\"]\",\"dataId\":\"\",\"id\":\"1823\",\"name\":\"阿什本\",\"provinceId\":\"400\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1824,\"values\":{\"codes\":\"[\\\"洛杉矶\\\"]\",\"dataId\":\"\",\"id\":\"1824\",\"name\":\"洛杉矶\",\"provinceId\":\"402\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1825,\"values\":{\"codes\":\"[\\\"西雅图\\\"]\",\"dataId\":\"\",\"id\":\"1825\",\"name\":\"西雅图\",\"provinceId\":\"38\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1826,\"values\":{\"codes\":\"[\\\"温哥华\\\"]\",\"dataId\":\"\",\"id\":\"1826\",\"name\":\"温哥华\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1827,\"values\":{\"codes\":\"[\\\"纳什维尔\\\"]\",\"dataId\":\"\",\"id\":\"1827\",\"name\":\"纳什维尔\",\"provinceId\":\"489\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1828,\"values\":{\"codes\":\"[\\\"蒙特利尔\\\"]\",\"dataId\":\"\",\"id\":\"1828\",\"name\":\"蒙特利尔\",\"provinceId\":\"490\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1829,\"values\":{\"codes\":\"[\\\"圣彼得堡\\\"]\",\"dataId\":\"\",\"id\":\"1829\",\"name\":\"圣彼得堡\",\"provinceId\":\"495\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1830,\"values\":{\"codes\":\"[\\\"哥伦布\\\"]\",\"dataId\":\"\",\"id\":\"1830\",\"name\":\"哥伦布\",\"provinceId\":\"646\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1831,\"values\":{\"codes\":\"[\\\"纽约\\\"]\",\"dataId\":\"\",\"id\":\"1831\",\"name\":\"纽约\",\"provinceId\":\"648\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1832,\"values\":{\"codes\":\"[\\\"休斯顿\\\"]\",\"dataId\":\"\",\"id\":\"1832\",\"name\":\"休斯顿\",\"provinceId\":\"651\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1833,\"values\":{\"codes\":\"[\\\"旧金山\\\"]\",\"dataId\":\"\",\"id\":\"1833\",\"name\":\"旧金山\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1834,\"values\":{\"codes\":\"[\\\"圣路易斯\\\"]\",\"dataId\":\"\",\"id\":\"1834\",\"name\":\"圣路易斯\",\"provinceId\":\"661\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1835,\"values\":{\"codes\":\"[\\\"堪萨斯城\\\"]\",\"dataId\":\"\",\"id\":\"1835\",\"name\":\"堪萨斯城\",\"provinceId\":\"661\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1836,\"values\":{\"codes\":\"[\\\"特伦顿\\\"]\",\"dataId\":\"\",\"id\":\"1836\",\"name\":\"特伦顿\",\"provinceId\":\"488\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1837,\"values\":{\"codes\":\"[\\\"蒙特利\\\"]\",\"dataId\":\"\",\"id\":\"1837\",\"name\":\"蒙特利\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1838,\"values\":{\"codes\":\"[\\\"奥克兰\\\"]\",\"dataId\":\"\",\"id\":\"1838\",\"name\":\"奥克兰\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1839,\"values\":{\"codes\":\"[\\\"纳罗利\\\"]\",\"dataId\":\"\",\"id\":\"1839\",\"name\":\"纳罗利\",\"provinceId\":\"662\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1840,\"values\":{\"codes\":\"[\\\"亚特兰大\\\"]\",\"dataId\":\"\",\"id\":\"1840\",\"name\":\"亚特兰大\",\"provinceId\":\"655\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1841,\"values\":{\"codes\":\"[\\\"辛辛那提\\\"]\",\"dataId\":\"\",\"id\":\"1841\",\"name\":\"辛辛那提\",\"provinceId\":\"646\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1842,\"values\":{\"codes\":\"[\\\"法兰克福\\\"]\",\"dataId\":\"\",\"id\":\"1842\",\"name\":\"法兰克福\",\"provinceId\":\"665\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1843,\"values\":{\"codes\":\"[\\\"芝加哥\\\"]\",\"dataId\":\"\",\"id\":\"1843\",\"name\":\"芝加哥\",\"provinceId\":\"654\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1844,\"values\":{\"codes\":\"[\\\"明尼阿波利斯\\\"]\",\"dataId\":\"\",\"id\":\"1844\",\"name\":\"明尼阿波利斯\",\"provinceId\":\"652\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1845,\"values\":{\"codes\":\"[\\\"夏洛特\\\"]\",\"dataId\":\"\",\"id\":\"1845\",\"name\":\"夏洛特\",\"provinceId\":\"662\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1846,\"values\":{\"codes\":\"[\\\"达拉斯\\\"]\",\"dataId\":\"\",\"id\":\"1846\",\"name\":\"达拉斯\",\"provinceId\":\"651\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1847,\"values\":{\"codes\":\"[\\\"圣莫尼卡\\\"]\",\"dataId\":\"\",\"id\":\"1847\",\"name\":\"圣莫尼卡\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1848,\"values\":{\"codes\":\"[\\\"凤凰城\\\"]\",\"dataId\":\"\",\"id\":\"1848\",\"name\":\"凤凰城\",\"provinceId\":\"666\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1849,\"values\":{\"codes\":\"[\\\"丹佛\\\"]\",\"dataId\":\"\",\"id\":\"1849\",\"name\":\"丹佛\",\"provinceId\":\"653\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1850,\"values\":{\"codes\":\"[\\\"盐湖城\\\"]\",\"dataId\":\"\",\"id\":\"1850\",\"name\":\"盐湖城\",\"provinceId\":\"667\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1851,\"values\":{\"codes\":\"[\\\"波士顿\\\"]\",\"dataId\":\"\",\"id\":\"1851\",\"name\":\"波士顿\",\"provinceId\":\"659\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1852,\"values\":{\"codes\":\"[\\\"拉斯维加斯\\\"]\",\"dataId\":\"\",\"id\":\"1852\",\"name\":\"拉斯维加斯\",\"provinceId\":\"650\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1853,\"values\":{\"codes\":\"[\\\"华盛顿特区\\\"]\",\"dataId\":\"\",\"id\":\"1853\",\"name\":\"华盛顿特区\",\"provinceId\":\"668\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1854,\"values\":{\"codes\":\"[\\\"底特律\\\"]\",\"dataId\":\"\",\"id\":\"1854\",\"name\":\"底特律\",\"provinceId\":\"664\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1855,\"values\":{\"codes\":\"[\\\"迈阿密\\\"]\",\"dataId\":\"\",\"id\":\"1855\",\"name\":\"迈阿密\",\"provinceId\":\"660\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1856,\"values\":{\"codes\":\"[\\\"费城\\\"]\",\"dataId\":\"\",\"id\":\"1856\",\"name\":\"费城\",\"provinceId\":\"657\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1857,\"values\":{\"codes\":\"[\\\"康普顿\\\"]\",\"dataId\":\"\",\"id\":\"1857\",\"name\":\"康普顿\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1858,\"values\":{\"codes\":\"[\\\"俄克拉何马城\\\"]\",\"dataId\":\"\",\"id\":\"1858\",\"name\":\"俄克拉何马城\",\"provinceId\":\"669\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1859,\"values\":{\"codes\":\"[\\\"多伦多\\\"]\",\"dataId\":\"\",\"id\":\"1859\",\"name\":\"多伦多\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1860,\"values\":{\"codes\":\"[\\\"圣地亚哥\\\"]\",\"dataId\":\"\",\"id\":\"1860\",\"name\":\"圣地亚哥\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1861,\"values\":{\"codes\":\"[\\\"里士满\\\"]\",\"dataId\":\"\",\"id\":\"1861\",\"name\":\"里士满\",\"provinceId\":\"400\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1862,\"values\":{\"codes\":\"[\\\"利特尔顿\\\"]\",\"dataId\":\"\",\"id\":\"1862\",\"name\":\"利特尔顿\",\"provinceId\":\"653\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1863,\"values\":{\"codes\":\"[\\\"贝克斯菲尔德\\\"]\",\"dataId\":\"\",\"id\":\"1863\",\"name\":\"贝克斯菲尔德\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1864,\"values\":{\"codes\":\"[\\\"林肯\\\"]\",\"dataId\":\"\",\"id\":\"1864\",\"name\":\"林肯\",\"provinceId\":\"674\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1865,\"values\":{\"codes\":\"[\\\"萨克拉门托\\\"]\",\"dataId\":\"\",\"id\":\"1865\",\"name\":\"萨克拉门托\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1866,\"values\":{\"codes\":\"[\\\"普罗维登斯\\\"]\",\"dataId\":\"\",\"id\":\"1866\",\"name\":\"普罗维登斯\",\"provinceId\":\"679\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1867,\"values\":{\"codes\":\"[\\\"圣克拉拉\\\"]\",\"dataId\":\"\",\"id\":\"1867\",\"name\":\"圣克拉拉\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1868,\"values\":{\"codes\":\"[\\\"帕罗奥多\\\"]\",\"dataId\":\"\",\"id\":\"1868\",\"name\":\"帕罗奥多\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1869,\"values\":{\"codes\":\"[\\\"费利蒙\\\"]\",\"dataId\":\"\",\"id\":\"1869\",\"name\":\"费利蒙\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1870,\"values\":{\"codes\":\"[\\\"山景\\\"]\",\"dataId\":\"\",\"id\":\"1870\",\"name\":\"山景\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1871,\"values\":{\"codes\":\"[\\\"博阿努瓦\\\"]\",\"dataId\":\"\",\"id\":\"1871\",\"name\":\"博阿努瓦\",\"provinceId\":\"490\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1872,\"values\":{\"codes\":\"[\\\"塔拉哈西\\\"]\",\"dataId\":\"\",\"id\":\"1872\",\"name\":\"塔拉哈西\",\"provinceId\":\"660\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1873,\"values\":{\"codes\":\"[\\\"雅加达\\\"]\",\"dataId\":\"\",\"id\":\"1873\",\"name\":\"雅加达\",\"provinceId\":\"89\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1874,\"values\":{\"codes\":\"[\\\"哈里斯堡\\\"]\",\"dataId\":\"\",\"id\":\"1874\",\"name\":\"哈里斯堡\",\"provinceId\":\"657\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1875,\"values\":{\"codes\":\"[\\\"檀香山\\\"]\",\"dataId\":\"\",\"id\":\"1875\",\"name\":\"檀香山\",\"provinceId\":\"778\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1876,\"values\":{\"codes\":\"[\\\"圣安那\\\"]\",\"dataId\":\"\",\"id\":\"1876\",\"name\":\"圣安那\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1877,\"values\":{\"codes\":\"[\\\"奥斯汀\\\"]\",\"dataId\":\"\",\"id\":\"1877\",\"name\":\"奥斯汀\",\"provinceId\":\"651\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1878,\"values\":{\"codes\":\"[\\\"麦迪逊\\\"]\",\"dataId\":\"\",\"id\":\"1878\",\"name\":\"麦迪逊\",\"provinceId\":\"671\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1879,\"values\":{\"codes\":\"[\\\"印第安纳波利斯\\\"]\",\"dataId\":\"\",\"id\":\"1879\",\"name\":\"印第安纳波利斯\",\"provinceId\":\"656\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1880,\"values\":{\"codes\":\"[\\\"卡尔加里\\\"]\",\"dataId\":\"\",\"id\":\"1880\",\"name\":\"卡尔加里\",\"provinceId\":\"780\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1881,\"values\":{\"codes\":\"[\\\"长滩\\\"]\",\"dataId\":\"\",\"id\":\"1881\",\"name\":\"长滩\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1882,\"values\":{\"codes\":\"[\\\"帕萨迪纳\\\"]\",\"dataId\":\"\",\"id\":\"1882\",\"name\":\"帕萨迪纳\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1883,\"values\":{\"codes\":\"[\\\"兰辛\\\"]\",\"dataId\":\"\",\"id\":\"1883\",\"name\":\"兰辛\",\"provinceId\":\"664\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1884,\"values\":{\"codes\":\"[\\\"杰克逊\\\"]\",\"dataId\":\"\",\"id\":\"1884\",\"name\":\"杰克逊\",\"provinceId\":\"783\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1885,\"values\":{\"codes\":\"[\\\"温尼伯\\\"]\",\"dataId\":\"\",\"id\":\"1885\",\"name\":\"温尼伯\",\"provinceId\":\"784\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1886,\"values\":{\"codes\":\"[\\\"马尼拉\\\"]\",\"dataId\":\"\",\"id\":\"1886\",\"name\":\"马尼拉\",\"provinceId\":\"42\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1887,\"values\":{\"codes\":\"[\\\"蒙哥马利\\\"]\",\"dataId\":\"\",\"id\":\"1887\",\"name\":\"蒙哥马利\",\"provinceId\":\"649\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1888,\"values\":{\"codes\":\"[\\\"圣保罗\\\"]\",\"dataId\":\"\",\"id\":\"1888\",\"name\":\"圣保罗\",\"provinceId\":\"652\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1889,\"values\":{\"codes\":\"[\\\"安那罕\\\"]\",\"dataId\":\"\",\"id\":\"1889\",\"name\":\"安那罕\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1890,\"values\":{\"codes\":\"[\\\"迪拜\\\"]\",\"dataId\":\"\",\"id\":\"1890\",\"name\":\"迪拜\",\"provinceId\":\"71\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1891,\"values\":{\"codes\":\"[\\\"新奥尔良\\\"]\",\"dataId\":\"\",\"id\":\"1891\",\"name\":\"新奥尔良\",\"provinceId\":\"678\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1892,\"values\":{\"codes\":\"[\\\"森尼韦尔\\\"]\",\"dataId\":\"\",\"id\":\"1892\",\"name\":\"森尼韦尔\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1893,\"values\":{\"codes\":\"[\\\"巴吞鲁日\\\"]\",\"dataId\":\"\",\"id\":\"1893\",\"name\":\"巴吞鲁日\",\"provinceId\":\"678\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1894,\"values\":{\"codes\":\"[\\\"奥尔巴尼\\\"]\",\"dataId\":\"\",\"id\":\"1894\",\"name\":\"奥尔巴尼\",\"provinceId\":\"648\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1895,\"values\":{\"codes\":\"[\\\"特洛伊\\\"]\",\"dataId\":\"\",\"id\":\"1895\",\"name\":\"特洛伊\",\"provinceId\":\"649\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1896,\"values\":{\"codes\":\"[\\\"斑鸠城\\\"]\",\"dataId\":\"\",\"id\":\"1896\",\"name\":\"斑鸠城\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1897,\"values\":{\"codes\":\"[\\\"托兰斯\\\"]\",\"dataId\":\"\",\"id\":\"1897\",\"name\":\"托兰斯\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1898,\"values\":{\"codes\":\"[\\\"小石城\\\"]\",\"dataId\":\"\",\"id\":\"1898\",\"name\":\"小石城\",\"provinceId\":\"677\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1899,\"values\":{\"codes\":\"[\\\"波莫纳\\\"]\",\"dataId\":\"\",\"id\":\"1899\",\"name\":\"波莫纳\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1900,\"values\":{\"codes\":\"[\\\"阿罕布拉\\\"]\",\"dataId\":\"\",\"id\":\"1900\",\"name\":\"阿罕布拉\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1901,\"values\":{\"codes\":\"[\\\"安克雷奇\\\"]\",\"dataId\":\"\",\"id\":\"1901\",\"name\":\"安克雷奇\",\"provinceId\":\"787\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1902,\"values\":{\"codes\":\"[\\\"塔科马\\\"]\",\"dataId\":\"\",\"id\":\"1902\",\"name\":\"塔科马\",\"provinceId\":\"38\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1903,\"values\":{\"codes\":\"[\\\"好莱坞\\\"]\",\"dataId\":\"\",\"id\":\"1903\",\"name\":\"好莱坞\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1904,\"values\":{\"codes\":\"[\\\"查尔斯顿\\\"]\",\"dataId\":\"\",\"id\":\"1904\",\"name\":\"查尔斯顿\",\"provinceId\":\"785\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1905,\"values\":{\"codes\":\"[\\\"Alameda\\\"]\",\"dataId\":\"\",\"id\":\"1905\",\"name\":\"Alameda\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1906,\"values\":{\"codes\":\"[\\\"内珀维尔\\\"]\",\"dataId\":\"\",\"id\":\"1906\",\"name\":\"内珀维尔\",\"provinceId\":\"654\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1907,\"values\":{\"codes\":\"[\\\"科斯塔梅萨\\\"]\",\"dataId\":\"\",\"id\":\"1907\",\"name\":\"科斯塔梅萨\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1908,\"values\":{\"codes\":\"[\\\"Napa\\\"]\",\"dataId\":\"\",\"id\":\"1908\",\"name\":\"Napa\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1909,\"values\":{\"codes\":\"[\\\"San-Mateo\\\"]\",\"dataId\":\"\",\"id\":\"1909\",\"name\":\"San-Mateo\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1910,\"values\":{\"codes\":\"[\\\"雷德蒙德\\\"]\",\"dataId\":\"\",\"id\":\"1910\",\"name\":\"雷德蒙德\",\"provinceId\":\"38\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1911,\"values\":{\"codes\":\"[\\\"Tulare\\\"]\",\"dataId\":\"\",\"id\":\"1911\",\"name\":\"Tulare\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1912,\"values\":{\"codes\":\"[\\\"红木城\\\"]\",\"dataId\":\"\",\"id\":\"1912\",\"name\":\"红木城\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1913,\"values\":{\"codes\":\"[\\\"圣菲\\\"]\",\"dataId\":\"\",\"id\":\"1913\",\"name\":\"圣菲\",\"provinceId\":\"673\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1914,\"values\":{\"codes\":\"[\\\"Santa-Cruz\\\"]\",\"dataId\":\"\",\"id\":\"1914\",\"name\":\"Santa-Cruz\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1915,\"values\":{\"codes\":\"[\\\"塞勒姆\\\"]\",\"dataId\":\"\",\"id\":\"1915\",\"name\":\"塞勒姆\",\"provinceId\":\"647\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1916,\"values\":{\"codes\":\"[\\\"尤凯亚\\\"]\",\"dataId\":\"\",\"id\":\"1916\",\"name\":\"尤凯亚\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1917,\"values\":{\"codes\":\"[\\\"得梅因\\\"]\",\"dataId\":\"\",\"id\":\"1917\",\"name\":\"得梅因\",\"provinceId\":\"781\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1918,\"values\":{\"codes\":\"[\\\"斯普林菲尔德\\\"]\",\"dataId\":\"\",\"id\":\"1918\",\"name\":\"斯普林菲尔德\",\"provinceId\":\"654\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1919,\"values\":{\"codes\":\"[\\\"博伊西\\\"]\",\"dataId\":\"\",\"id\":\"1919\",\"name\":\"博伊西\",\"provinceId\":\"779\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1920,\"values\":{\"codes\":\"[\\\"哈特福德\\\"]\",\"dataId\":\"\",\"id\":\"1920\",\"name\":\"哈特福德\",\"provinceId\":\"658\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1921,\"values\":{\"codes\":\"[\\\"佛列斯诺\\\"]\",\"dataId\":\"\",\"id\":\"1921\",\"name\":\"佛列斯诺\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1922,\"values\":{\"codes\":\"[\\\"尤里卡\\\"]\",\"dataId\":\"\",\"id\":\"1922\",\"name\":\"尤里卡\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1923,\"values\":{\"codes\":\"[\\\"康科德\\\"]\",\"dataId\":\"\",\"id\":\"1923\",\"name\":\"康科德\",\"provinceId\":\"786\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1924,\"values\":{\"codes\":\"[\\\"杰斐逊城\\\"]\",\"dataId\":\"\",\"id\":\"1924\",\"name\":\"杰斐逊城\",\"provinceId\":\"661\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1925,\"values\":{\"codes\":\"[\\\"史托克顿\\\"]\",\"dataId\":\"\",\"id\":\"1925\",\"name\":\"史托克顿\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1926,\"values\":{\"codes\":\"[\\\"Madera\\\"]\",\"dataId\":\"\",\"id\":\"1926\",\"name\":\"Madera\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1927,\"values\":{\"codes\":\"[\\\"海伦娜\\\"]\",\"dataId\":\"\",\"id\":\"1927\",\"name\":\"海伦娜\",\"provinceId\":\"791\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1928,\"values\":{\"codes\":\"[\\\"El-Dorado\\\"]\",\"dataId\":\"\",\"id\":\"1928\",\"name\":\"El-Dorado\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1929,\"values\":{\"codes\":\"[\\\"Shasta\\\"]\",\"dataId\":\"\",\"id\":\"1929\",\"name\":\"Shasta\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1930,\"values\":{\"codes\":\"[\\\"朱诺\\\"]\",\"dataId\":\"\",\"id\":\"1930\",\"name\":\"朱诺\",\"provinceId\":\"787\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1931,\"values\":{\"codes\":\"[\\\"夏延\\\"]\",\"dataId\":\"\",\"id\":\"1931\",\"name\":\"夏延\",\"provinceId\":\"777\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1932,\"values\":{\"codes\":\"[\\\"魁北克\\\"]\",\"dataId\":\"\",\"id\":\"1932\",\"name\":\"魁北克\",\"provinceId\":\"490\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1933,\"values\":{\"codes\":\"[\\\"京都\\\"]\",\"dataId\":\"\",\"id\":\"1933\",\"name\":\"京都\",\"provinceId\":\"798\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1934,\"values\":{\"codes\":\"[\\\"本地治里\\\"]\",\"dataId\":\"\",\"id\":\"1934\",\"name\":\"本地治里\",\"provinceId\":\"820\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1935,\"values\":{\"codes\":\"[\\\"赛城\\\"]\",\"dataId\":\"\",\"id\":\"1935\",\"name\":\"赛城\",\"provinceId\":\"40\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1936,\"values\":{\"codes\":\"[\\\"万隆\\\"]\",\"dataId\":\"\",\"id\":\"1936\",\"name\":\"万隆\",\"provinceId\":\"822\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1937,\"values\":{\"codes\":\"[\\\"瓦多达拉\\\"]\",\"dataId\":\"\",\"id\":\"1937\",\"name\":\"瓦多达拉\",\"provinceId\":\"269\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1938,\"values\":{\"codes\":\"[\\\"法里达巴德\\\"]\",\"dataId\":\"\",\"id\":\"1938\",\"name\":\"法里达巴德\",\"provinceId\":\"270\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1939,\"values\":{\"codes\":\"[\\\"西姆拉\\\"]\",\"dataId\":\"\",\"id\":\"1939\",\"name\":\"西姆拉\",\"provinceId\":\"358\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1940,\"values\":{\"codes\":\"[\\\"高哈蒂\\\"]\",\"dataId\":\"\",\"id\":\"1940\",\"name\":\"高哈蒂\",\"provinceId\":\"356\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1941,\"values\":{\"codes\":\"[\\\"布巴内斯瓦尔\\\"]\",\"dataId\":\"\",\"id\":\"1941\",\"name\":\"布巴内斯瓦尔\",\"provinceId\":\"826\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1942,\"values\":{\"codes\":\"[\\\"三联市\\\"]\",\"dataId\":\"\",\"id\":\"1942\",\"name\":\"三联市\",\"provinceId\":\"245\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1943,\"values\":{\"codes\":\"[\\\"维杰亚瓦达\\\"]\",\"dataId\":\"\",\"id\":\"1943\",\"name\":\"维杰亚瓦达\",\"provinceId\":\"243\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1944,\"values\":{\"codes\":\"[\\\"阳光海岸\\\"]\",\"dataId\":\"\",\"id\":\"1944\",\"name\":\"阳光海岸\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1945,\"values\":{\"codes\":\"[\\\"黄金海岸\\\"]\",\"dataId\":\"\",\"id\":\"1945\",\"name\":\"黄金海岸\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1946,\"values\":{\"codes\":\"[\\\"堪培拉\\\"]\",\"dataId\":\"\",\"id\":\"1946\",\"name\":\"堪培拉\",\"provinceId\":\"855\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1947,\"values\":{\"codes\":\"[\\\"坎卢普斯\\\"]\",\"dataId\":\"\",\"id\":\"1947\",\"name\":\"坎卢普斯\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1948,\"values\":{\"codes\":\"[\\\"维多利亚\\\"]\",\"dataId\":\"\",\"id\":\"1948\",\"name\":\"维多利亚\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1949,\"values\":{\"codes\":\"[\\\"素里\\\"]\",\"dataId\":\"\",\"id\":\"1949\",\"name\":\"素里\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1950,\"values\":{\"codes\":\"[\\\"本那比\\\"]\",\"dataId\":\"\",\"id\":\"1950\",\"name\":\"本那比\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1951,\"values\":{\"codes\":\"[\\\"基洛纳\\\"]\",\"dataId\":\"\",\"id\":\"1951\",\"name\":\"基洛纳\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1952,\"values\":{\"codes\":\"[\\\"北温哥华\\\"]\",\"dataId\":\"\",\"id\":\"1952\",\"name\":\"北温哥华\",\"provinceId\":\"72\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1953,\"values\":{\"codes\":\"[\\\"埃德蒙顿\\\"]\",\"dataId\":\"\",\"id\":\"1953\",\"name\":\"埃德蒙顿\",\"provinceId\":\"780\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1954,\"values\":{\"codes\":\"[\\\"哥伦比亚\\\"]\",\"dataId\":\"\",\"id\":\"1954\",\"name\":\"哥伦比亚\",\"provinceId\":\"661\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1955,\"values\":{\"codes\":\"[\\\"多佛\\\"]\",\"dataId\":\"\",\"id\":\"1955\",\"name\":\"多佛\",\"provinceId\":\"782\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1956,\"values\":{\"codes\":\"[\\\"Yuba\\\"]\",\"dataId\":\"\",\"id\":\"1956\",\"name\":\"Yuba\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1957,\"values\":{\"codes\":\"[\\\"哈利法克斯\\\"]\",\"dataId\":\"\",\"id\":\"1957\",\"name\":\"哈利法克斯\",\"provinceId\":\"858\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1958,\"values\":{\"codes\":\"[\\\"Merced\\\"]\",\"dataId\":\"\",\"id\":\"1958\",\"name\":\"Merced\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1959,\"values\":{\"codes\":\"[\\\"哈密尔顿\\\"]\",\"dataId\":\"\",\"id\":\"1959\",\"name\":\"哈密尔顿\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1960,\"values\":{\"codes\":\"[\\\"米尔顿\\\"]\",\"dataId\":\"\",\"id\":\"1960\",\"name\":\"米尔顿\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1961,\"values\":{\"codes\":\"[\\\"圣凯瑟琳斯\\\"]\",\"dataId\":\"\",\"id\":\"1961\",\"name\":\"圣凯瑟琳斯\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1962,\"values\":{\"codes\":\"[\\\"温莎\\\"]\",\"dataId\":\"\",\"id\":\"1962\",\"name\":\"温莎\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1963,\"values\":{\"codes\":\"[\\\"伯灵顿\\\"]\",\"dataId\":\"\",\"id\":\"1963\",\"name\":\"伯灵顿\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1964,\"values\":{\"codes\":\"[\\\"贝尔维尔\\\"]\",\"dataId\":\"\",\"id\":\"1964\",\"name\":\"贝尔维尔\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1965,\"values\":{\"codes\":\"[\\\"奥克维尔\\\"]\",\"dataId\":\"\",\"id\":\"1965\",\"name\":\"奥克维尔\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1966,\"values\":{\"codes\":\"[\\\"库比蒂诺\\\"]\",\"dataId\":\"\",\"id\":\"1966\",\"name\":\"库比蒂诺\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1967,\"values\":{\"codes\":\"[\\\"托皮卡\\\"]\",\"dataId\":\"\",\"id\":\"1967\",\"name\":\"托皮卡\",\"provinceId\":\"663\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1968,\"values\":{\"codes\":\"[\\\"Sonoma\\\"]\",\"dataId\":\"\",\"id\":\"1968\",\"name\":\"Sonoma\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1969,\"values\":{\"codes\":\"[\\\"柔似蜜\\\"]\",\"dataId\":\"\",\"id\":\"1969\",\"name\":\"柔似蜜\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1970,\"values\":{\"codes\":\"[\\\"Alpine\\\"]\",\"dataId\":\"\",\"id\":\"1970\",\"name\":\"Alpine\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1971,\"values\":{\"codes\":\"[\\\"布兰普顿\\\"]\",\"dataId\":\"\",\"id\":\"1971\",\"name\":\"布兰普顿\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1972,\"values\":{\"codes\":\"[\\\"泗水\\\"]\",\"dataId\":\"\",\"id\":\"1972\",\"name\":\"泗水\",\"provinceId\":\"860\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1973,\"values\":{\"codes\":\"[\\\"基奇纳\\\"]\",\"dataId\":\"\",\"id\":\"1973\",\"name\":\"基奇纳\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1974,\"values\":{\"codes\":\"[\\\"渥太华\\\"]\",\"dataId\":\"\",\"id\":\"1974\",\"name\":\"渥太华\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1975,\"values\":{\"codes\":\"[\\\"密西沙加\\\"]\",\"dataId\":\"\",\"id\":\"1975\",\"name\":\"密西沙加\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1976,\"values\":{\"codes\":\"[\\\"纽马克特\\\"]\",\"dataId\":\"\",\"id\":\"1976\",\"name\":\"纽马克特\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1977,\"values\":{\"codes\":\"[\\\"Placer\\\"]\",\"dataId\":\"\",\"id\":\"1977\",\"name\":\"Placer\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1978,\"values\":{\"codes\":\"[\\\"波特兰\\\"]\",\"dataId\":\"\",\"id\":\"1978\",\"name\":\"波特兰\",\"provinceId\":\"788\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1979,\"values\":{\"codes\":\"[\\\"圣费尔南多\\\"]\",\"dataId\":\"\",\"id\":\"1979\",\"name\":\"圣费尔南多\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1980,\"values\":{\"codes\":\"[\\\"巴里\\\"]\",\"dataId\":\"\",\"id\":\"1980\",\"name\":\"巴里\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1981,\"values\":{\"codes\":\"[\\\"俾斯麦\\\"]\",\"dataId\":\"\",\"id\":\"1981\",\"name\":\"俾斯麦\",\"provinceId\":\"789\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1982,\"values\":{\"codes\":\"[\\\"康沃尔\\\"]\",\"dataId\":\"\",\"id\":\"1982\",\"name\":\"康沃尔\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1983,\"values\":{\"codes\":\"[\\\"里贾纳\\\"]\",\"dataId\":\"\",\"id\":\"1983\",\"name\":\"里贾纳\",\"provinceId\":\"862\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1984,\"values\":{\"codes\":\"[\\\"萨斯卡通\\\"]\",\"dataId\":\"\",\"id\":\"1984\",\"name\":\"萨斯卡通\",\"provinceId\":\"862\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1985,\"values\":{\"codes\":\"[\\\"桑德贝\\\"]\",\"dataId\":\"\",\"id\":\"1985\",\"name\":\"桑德贝\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1986,\"values\":{\"codes\":\"[\\\"奥古斯塔\\\"]\",\"dataId\":\"\",\"id\":\"1986\",\"name\":\"奥古斯塔\",\"provinceId\":\"788\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1987,\"values\":{\"codes\":\"[\\\"蒙古顿\\\"]\",\"dataId\":\"\",\"id\":\"1987\",\"name\":\"蒙古顿\",\"provinceId\":\"863\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1988,\"values\":{\"codes\":\"[\\\"圭尔夫\\\"]\",\"dataId\":\"\",\"id\":\"1988\",\"name\":\"圭尔夫\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1989,\"values\":{\"codes\":\"[\\\"弗雷德里克顿\\\"]\",\"dataId\":\"\",\"id\":\"1989\",\"name\":\"弗雷德里克顿\",\"provinceId\":\"863\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1990,\"values\":{\"codes\":\"[\\\"布兰特福德\\\"]\",\"dataId\":\"\",\"id\":\"1990\",\"name\":\"布兰特福德\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1991,\"values\":{\"codes\":\"[\\\"剑桥\\\"]\",\"dataId\":\"\",\"id\":\"1991\",\"name\":\"剑桥\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1992,\"values\":{\"codes\":\"[\\\"圣约翰\\\"]\",\"dataId\":\"\",\"id\":\"1992\",\"name\":\"圣约翰\",\"provinceId\":\"863\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1993,\"values\":{\"codes\":\"[\\\"夏洛特敦\\\"]\",\"dataId\":\"\",\"id\":\"1993\",\"name\":\"夏洛特敦\",\"provinceId\":\"869\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1994,\"values\":{\"codes\":\"[\\\"彼得伯勒\\\"]\",\"dataId\":\"\",\"id\":\"1994\",\"name\":\"彼得伯勒\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1995,\"values\":{\"codes\":\"[\\\"布罗克维尔\\\"]\",\"dataId\":\"\",\"id\":\"1995\",\"name\":\"布罗克维尔\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1996,\"values\":{\"codes\":\"[\\\"蒙彼利埃\\\"]\",\"dataId\":\"\",\"id\":\"1996\",\"name\":\"蒙彼利埃\",\"provinceId\":\"672\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1997,\"values\":{\"codes\":\"[\\\"Humboldt\\\"]\",\"dataId\":\"\",\"id\":\"1997\",\"name\":\"Humboldt\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1998,\"values\":{\"codes\":\"[\\\"卡森城\\\"]\",\"dataId\":\"\",\"id\":\"1998\",\"name\":\"卡森城\",\"provinceId\":\"650\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1999,\"values\":{\"codes\":\"[\\\"北湾\\\"]\",\"dataId\":\"\",\"id\":\"1999\",\"name\":\"北湾\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2000,\"values\":{\"codes\":\"[\\\"皮尔\\\"]\",\"dataId\":\"\",\"id\":\"2000\",\"name\":\"皮尔\",\"provinceId\":\"790\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2001,\"values\":{\"codes\":\"[\\\"马诺夸里\\\"]\",\"dataId\":\"\",\"id\":\"2001\",\"name\":\"马诺夸里\",\"provinceId\":\"870\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2002,\"values\":{\"codes\":\"[\\\"登巴萨\\\"]\",\"dataId\":\"\",\"id\":\"2002\",\"name\":\"登巴萨\",\"provinceId\":\"871\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2003,\"values\":{\"codes\":\"[\\\"艾藻尔\\\"]\",\"dataId\":\"\",\"id\":\"2003\",\"name\":\"艾藻尔\",\"provinceId\":\"873\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2004,\"values\":{\"codes\":\"[\\\"科希马\\\"]\",\"dataId\":\"\",\"id\":\"2004\",\"name\":\"科希马\",\"provinceId\":\"872\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2005,\"values\":{\"codes\":\"[\\\"马杜赖\\\"]\",\"dataId\":\"\",\"id\":\"2005\",\"name\":\"马杜赖\",\"provinceId\":\"241\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2006,\"values\":{\"codes\":\"[\\\"查谟\\\"]\",\"dataId\":\"\",\"id\":\"2006\",\"name\":\"查谟\",\"provinceId\":\"357\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2007,\"values\":{\"codes\":\"[\\\"纽卡斯尔\\\"]\",\"dataId\":\"\",\"id\":\"2007\",\"name\":\"纽卡斯尔\",\"provinceId\":\"299\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2008,\"values\":{\"codes\":\"[\\\"巴淡岛\\\"]\",\"dataId\":\"\",\"id\":\"2008\",\"name\":\"巴淡岛\",\"provinceId\":\"861\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2009,\"values\":{\"codes\":\"[\\\"北干巴鲁\\\"]\",\"dataId\":\"\",\"id\":\"2009\",\"name\":\"北干巴鲁\",\"provinceId\":\"883\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2010,\"values\":{\"codes\":\"[\\\"勿加泗\\\"]\",\"dataId\":\"\",\"id\":\"2010\",\"name\":\"勿加泗\",\"provinceId\":\"822\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2011,\"values\":{\"codes\":\"[\\\"茂物\\\"]\",\"dataId\":\"\",\"id\":\"2011\",\"name\":\"茂物\",\"provinceId\":\"822\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2012,\"values\":{\"codes\":\"[\\\"卢迪亚纳\\\"]\",\"dataId\":\"\",\"id\":\"2012\",\"name\":\"卢迪亚纳\",\"provinceId\":\"298\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2013,\"values\":{\"codes\":\"[\\\"巴厘巴板\\\"]\",\"dataId\":\"\",\"id\":\"2013\",\"name\":\"巴厘巴板\",\"provinceId\":\"1020\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2014,\"values\":{\"codes\":\"[\\\"坤甸\\\"]\",\"dataId\":\"\",\"id\":\"2014\",\"name\":\"坤甸\",\"provinceId\":\"886\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2015,\"values\":{\"codes\":\"[\\\"日惹\\\"]\",\"dataId\":\"\",\"id\":\"2015\",\"name\":\"日惹\",\"provinceId\":\"1025\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2016,\"values\":{\"codes\":\"[\\\"巨港\\\"]\",\"dataId\":\"\",\"id\":\"2016\",\"name\":\"巨港\",\"provinceId\":\"1026\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2017,\"values\":{\"codes\":\"[\\\"安汶\\\"]\",\"dataId\":\"\",\"id\":\"2017\",\"name\":\"安汶\",\"provinceId\":\"1029\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2018,\"values\":{\"codes\":\"[\\\"巴东\\\"]\",\"dataId\":\"\",\"id\":\"2018\",\"name\":\"巴东\",\"provinceId\":\"1024\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2019,\"values\":{\"codes\":\"[\\\"马辰\\\"]\",\"dataId\":\"\",\"id\":\"2019\",\"name\":\"马辰\",\"provinceId\":\"1021\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2020,\"values\":{\"codes\":\"[\\\"万鸦老\\\"]\",\"dataId\":\"\",\"id\":\"2020\",\"name\":\"万鸦老\",\"provinceId\":\"1033\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2021,\"values\":{\"codes\":\"[\\\"古邦\\\"]\",\"dataId\":\"\",\"id\":\"2021\",\"name\":\"古邦\",\"provinceId\":\"1035\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2022,\"values\":{\"codes\":\"[\\\"班达楠榜\\\"]\",\"dataId\":\"\",\"id\":\"2022\",\"name\":\"班达楠榜\",\"provinceId\":\"1027\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2023,\"values\":{\"codes\":\"[\\\"三宝垄\\\"]\",\"dataId\":\"\",\"id\":\"2023\",\"name\":\"三宝垄\",\"provinceId\":\"888\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2024,\"values\":{\"codes\":\"[\\\"滑铁卢\\\"]\",\"dataId\":\"\",\"id\":\"2024\",\"name\":\"滑铁卢\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2025,\"values\":{\"codes\":\"[\\\"马塔兰\\\"]\",\"dataId\":\"\",\"id\":\"2025\",\"name\":\"马塔兰\",\"provinceId\":\"1032\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2026,\"values\":{\"codes\":\"[\\\"阿加尔塔拉\\\"]\",\"dataId\":\"\",\"id\":\"2026\",\"name\":\"阿加尔塔拉\",\"provinceId\":\"1118\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2027,\"values\":{\"codes\":\"[\\\"台拉登\\\"]\",\"dataId\":\"\",\"id\":\"2027\",\"name\":\"台拉登\",\"provinceId\":\"821\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2028,\"values\":{\"codes\":\"[\\\"棉兰\\\"]\",\"dataId\":\"\",\"id\":\"2028\",\"name\":\"棉兰\",\"provinceId\":\"1023\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2029,\"values\":{\"codes\":\"[\\\"塔那\\\"]\",\"dataId\":\"\",\"id\":\"2029\",\"name\":\"塔那\",\"provinceId\":\"242\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2030,\"values\":{\"codes\":\"[\\\"迈索尔\\\"]\",\"dataId\":\"\",\"id\":\"2030\",\"name\":\"迈索尔\",\"provinceId\":\"39\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2031,\"values\":{\"codes\":\"[\\\"Butte\\\"]\",\"dataId\":\"\",\"id\":\"2031\",\"name\":\"Butte\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2032,\"values\":{\"codes\":\"[\\\"金斯敦\\\"]\",\"dataId\":\"\",\"id\":\"2032\",\"name\":\"金斯敦\",\"provinceId\":\"670\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2033,\"values\":{\"codes\":\"[\\\"兰契\\\"]\",\"dataId\":\"\",\"id\":\"2033\",\"name\":\"兰契\",\"provinceId\":\"818\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2034,\"values\":{\"codes\":\"[\\\"麦凯\\\"]\",\"dataId\":\"\",\"id\":\"2034\",\"name\":\"麦凯\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2035,\"values\":{\"codes\":\"[\\\"詹谢普尔\\\"]\",\"dataId\":\"\",\"id\":\"2035\",\"name\":\"詹谢普尔\",\"provinceId\":\"818\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2036,\"values\":{\"codes\":\"[\\\"内洛尔\\\"]\",\"dataId\":\"\",\"id\":\"2036\",\"name\":\"内洛尔\",\"provinceId\":\"243\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2037,\"values\":{\"codes\":\"[\\\"英帕尔\\\"]\",\"dataId\":\"\",\"id\":\"2037\",\"name\":\"英帕尔\",\"provinceId\":\"825\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2038,\"values\":{\"codes\":\"[\\\"里弗顿\\\"]\",\"dataId\":\"\",\"id\":\"2038\",\"name\":\"里弗顿\",\"provinceId\":\"777\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2039,\"values\":{\"codes\":\"[\\\"巴鲁埃里\\\"]\",\"dataId\":\"\",\"id\":\"2039\",\"name\":\"巴鲁埃里\",\"provinceId\":\"61\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2040,\"values\":{\"codes\":\"[\\\"马利布\\\"]\",\"dataId\":\"\",\"id\":\"2040\",\"name\":\"马利布\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2041,\"values\":{\"codes\":\"[\\\"马斯喀特\\\"]\",\"dataId\":\"\",\"id\":\"2041\",\"name\":\"马斯喀特\",\"provinceId\":\"143\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2042,\"values\":{\"codes\":\"[\\\"甘托克\\\"]\",\"dataId\":\"\",\"id\":\"2042\",\"name\":\"甘托克\",\"provinceId\":\"1251\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2043,\"values\":{\"codes\":\"[\\\"Mendocino\\\"]\",\"dataId\":\"\",\"id\":\"2043\",\"name\":\"Mendocino\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2044,\"values\":{\"codes\":\"[\\\"安纳波利斯\\\"]\",\"dataId\":\"\",\"id\":\"2044\",\"name\":\"安纳波利斯\",\"provinceId\":\"493\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2045,\"values\":{\"codes\":\"[\\\"麦克默里堡\\\"]\",\"dataId\":\"\",\"id\":\"2045\",\"name\":\"麦克默里堡\",\"provinceId\":\"780\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2046,\"values\":{\"codes\":\"[\\\"加蒂诺\\\"]\",\"dataId\":\"\",\"id\":\"2046\",\"name\":\"加蒂诺\",\"provinceId\":\"490\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2047,\"values\":{\"codes\":\"[\\\"Colusa\\\"]\",\"dataId\":\"\",\"id\":\"2047\",\"name\":\"Colusa\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2048,\"values\":{\"codes\":\"[\\\"怀特霍斯\\\"]\",\"dataId\":\"\",\"id\":\"2048\",\"name\":\"怀特霍斯\",\"provinceId\":\"1280\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2049,\"values\":{\"codes\":\"[\\\"伊卡卢伊特\\\"]\",\"dataId\":\"\",\"id\":\"2049\",\"name\":\"伊卡卢伊特\",\"provinceId\":\"1281\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2050,\"values\":{\"codes\":\"[\\\"耶洛奈夫\\\"]\",\"dataId\":\"\",\"id\":\"2050\",\"name\":\"耶洛奈夫\",\"provinceId\":\"1282\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2051,\"values\":{\"codes\":\"[\\\"奥林匹亚\\\"]\",\"dataId\":\"\",\"id\":\"2051\",\"name\":\"奥林匹亚\",\"provinceId\":\"38\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2052,\"values\":{\"codes\":\"[\\\"达尔文\\\"]\",\"dataId\":\"\",\"id\":\"2052\",\"name\":\"达尔文\",\"provinceId\":\"1124\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2053,\"values\":{\"codes\":\"[\\\"汤斯维尔\\\"]\",\"dataId\":\"\",\"id\":\"2053\",\"name\":\"汤斯维尔\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2054,\"values\":{\"codes\":\"[\\\"达曼\\\"]\",\"dataId\":\"\",\"id\":\"2054\",\"name\":\"达曼\",\"provinceId\":\"1287\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2055,\"values\":{\"codes\":\"[\\\"迪马布尔\\\"]\",\"dataId\":\"\",\"id\":\"2055\",\"name\":\"迪马布尔\",\"provinceId\":\"872\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2056,\"values\":{\"codes\":\"[\\\"圣朗贝尔\\\"]\",\"dataId\":\"\",\"id\":\"2056\",\"name\":\"圣朗贝尔\",\"provinceId\":\"490\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2057,\"values\":{\"codes\":\"[\\\"汉诺威\\\"]\",\"dataId\":\"\",\"id\":\"2057\",\"name\":\"汉诺威\",\"provinceId\":\"786\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2058,\"values\":{\"codes\":\"[\\\"Siskiyou\\\"]\",\"dataId\":\"\",\"id\":\"2058\",\"name\":\"Siskiyou\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2059,\"values\":{\"codes\":\"[\\\"德波\\\"]\",\"dataId\":\"\",\"id\":\"2059\",\"name\":\"德波\",\"provinceId\":\"822\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2060,\"values\":{\"codes\":\"[\\\"玛琅\\\"]\",\"dataId\":\"\",\"id\":\"2060\",\"name\":\"玛琅\",\"provinceId\":\"860\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2061,\"values\":{\"codes\":\"[\\\"Calaveras\\\"]\",\"dataId\":\"\",\"id\":\"2061\",\"name\":\"Calaveras\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2062,\"values\":{\"codes\":\"[\\\"阿萨巴斯卡\\\"]\",\"dataId\":\"\",\"id\":\"2062\",\"name\":\"阿萨巴斯卡\",\"provinceId\":\"780\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2063,\"values\":{\"codes\":\"[\\\"大熊湖\\\"]\",\"dataId\":\"\",\"id\":\"2063\",\"name\":\"大熊湖\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2064,\"values\":{\"codes\":\"[\\\"若列特\\\"]\",\"dataId\":\"\",\"id\":\"2064\",\"name\":\"若列特\",\"provinceId\":\"490\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2065,\"values\":{\"codes\":\"[\\\"Tuolumne\\\"]\",\"dataId\":\"\",\"id\":\"2065\",\"name\":\"Tuolumne\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2066,\"values\":{\"codes\":\"[\\\"伊努维克\\\"]\",\"dataId\":\"\",\"id\":\"2066\",\"name\":\"伊努维克\",\"provinceId\":\"1282\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2067,\"values\":{\"codes\":\"[\\\"锡尔瓦萨\\\"]\",\"dataId\":\"\",\"id\":\"2067\",\"name\":\"锡尔瓦萨\",\"provinceId\":\"1521\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2068,\"values\":{\"codes\":\"[\\\"伍伦贡\\\"]\",\"dataId\":\"\",\"id\":\"2068\",\"name\":\"伍伦贡\",\"provinceId\":\"299\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2069,\"values\":{\"codes\":\"[\\\"蒂鲁文南特布勒姆\\\"]\",\"dataId\":\"\",\"id\":\"2069\",\"name\":\"蒂鲁文南特布勒姆\",\"provinceId\":\"275\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2070,\"values\":{\"codes\":\"[\\\"图文巴\\\"]\",\"dataId\":\"\",\"id\":\"2070\",\"name\":\"图文巴\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2071,\"values\":{\"codes\":\"[\\\"普哇加达\\\"]\",\"dataId\":\"\",\"id\":\"2071\",\"name\":\"普哇加达\",\"provinceId\":\"822\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2072,\"values\":{\"codes\":\"[\\\"梭罗\\\"]\",\"dataId\":\"\",\"id\":\"2072\",\"name\":\"梭罗\",\"provinceId\":\"888\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2073,\"values\":{\"codes\":\"[\\\"哥伦打洛\\\"]\",\"dataId\":\"\",\"id\":\"2073\",\"name\":\"哥伦打洛\",\"provinceId\":\"1038\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2074,\"values\":{\"codes\":\"[\\\"占碑\\\"]\",\"dataId\":\"\",\"id\":\"2074\",\"name\":\"占碑\",\"provinceId\":\"1028\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2075,\"values\":{\"codes\":\"[\\\"三马林达\\\"]\",\"dataId\":\"\",\"id\":\"2075\",\"name\":\"三马林达\",\"provinceId\":\"1020\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2076,\"values\":{\"codes\":\"[\\\"吉朗\\\"]\",\"dataId\":\"\",\"id\":\"2076\",\"name\":\"吉朗\",\"provinceId\":\"35\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2077,\"values\":{\"codes\":\"[\\\"班达亚齐\\\"]\",\"dataId\":\"\",\"id\":\"2077\",\"name\":\"班达亚齐\",\"provinceId\":\"1538\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2078,\"values\":{\"codes\":\"[\\\"翁戈尔\\\"]\",\"dataId\":\"\",\"id\":\"2078\",\"name\":\"翁戈尔\",\"provinceId\":\"243\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2079,\"values\":{\"codes\":\"[\\\"肯达里\\\"]\",\"dataId\":\"\",\"id\":\"2079\",\"name\":\"肯达里\",\"provinceId\":\"1535\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2080,\"values\":{\"codes\":\"[\\\"柯钦\\\"]\",\"dataId\":\"\",\"id\":\"2080\",\"name\":\"柯钦\",\"provinceId\":\"275\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2081,\"values\":{\"codes\":\"[\\\"望加锡\\\"]\",\"dataId\":\"\",\"id\":\"2081\",\"name\":\"望加锡\",\"provinceId\":\"1022\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2082,\"values\":{\"codes\":\"[\\\"西冷\\\"]\",\"dataId\":\"\",\"id\":\"2082\",\"name\":\"西冷\",\"provinceId\":\"1037\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2083,\"values\":{\"codes\":\"[\\\"丹戎槟榔\\\"]\",\"dataId\":\"\",\"id\":\"2083\",\"name\":\"丹戎槟榔\",\"provinceId\":\"861\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2084,\"values\":{\"codes\":\"[\\\"查亚普拉\\\"]\",\"dataId\":\"\",\"id\":\"2084\",\"name\":\"查亚普拉\",\"provinceId\":\"1036\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2085,\"values\":{\"codes\":\"[\\\"帕卢\\\"]\",\"dataId\":\"\",\"id\":\"2085\",\"name\":\"帕卢\",\"provinceId\":\"1031\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2086,\"values\":{\"codes\":\"[\\\"潘吉姆\\\"]\",\"dataId\":\"\",\"id\":\"2086\",\"name\":\"潘吉姆\",\"provinceId\":\"824\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2087,\"values\":{\"codes\":\"[\\\"瓦斯科\\\"]\",\"dataId\":\"\",\"id\":\"2087\",\"name\":\"瓦斯科\",\"provinceId\":\"824\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2088,\"values\":{\"codes\":\"[\\\"Contra-Costa\\\"]\",\"dataId\":\"\",\"id\":\"2088\",\"name\":\"Contra-Costa\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2089,\"values\":{\"codes\":\"[\\\"帕朗卡拉亚\\\"]\",\"dataId\":\"\",\"id\":\"2089\",\"name\":\"帕朗卡拉亚\",\"provinceId\":\"1030\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2090,\"values\":{\"codes\":\"[\\\"伊达纳格尔\\\"]\",\"dataId\":\"\",\"id\":\"2090\",\"name\":\"伊达纳格尔\",\"provinceId\":\"1117\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2091,\"values\":{\"codes\":\"[\\\"凯恩斯\\\"]\",\"dataId\":\"\",\"id\":\"2091\",\"name\":\"凯恩斯\",\"provinceId\":\"348\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2092,\"values\":{\"codes\":\"[\\\"索龙\\\"]\",\"dataId\":\"\",\"id\":\"2092\",\"name\":\"索龙\",\"provinceId\":\"870\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2093,\"values\":{\"codes\":\"[\\\"沃尔夫维尔\\\"]\",\"dataId\":\"\",\"id\":\"2093\",\"name\":\"沃尔夫维尔\",\"provinceId\":\"858\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2094,\"values\":{\"codes\":\"[\\\"圣加夫列夫尔\\\"]\",\"dataId\":\"\",\"id\":\"2094\",\"name\":\"圣加夫列夫尔\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2095,\"values\":{\"codes\":\"[\\\"安蒂戈尼什\\\"]\",\"dataId\":\"\",\"id\":\"2095\",\"name\":\"安蒂戈尼什\",\"provinceId\":\"858\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2096,\"values\":{\"codes\":\"[\\\"Yolo\\\"]\",\"dataId\":\"\",\"id\":\"2096\",\"name\":\"Yolo\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2097,\"values\":{\"codes\":\"[\\\"Marin\\\"]\",\"dataId\":\"\",\"id\":\"2097\",\"name\":\"Marin\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2098,\"values\":{\"codes\":\"[\\\"第斯普尔\\\"]\",\"dataId\":\"\",\"id\":\"2098\",\"name\":\"第斯普尔\",\"provinceId\":\"356\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2099,\"values\":{\"codes\":\"[\\\"Stanislaus\\\"]\",\"dataId\":\"\",\"id\":\"2099\",\"name\":\"Stanislaus\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2100,\"values\":{\"codes\":\"[\\\"奥兰治\\\"]\",\"dataId\":\"\",\"id\":\"2100\",\"name\":\"奥兰治\",\"provinceId\":\"402\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2101,\"values\":{\"codes\":\"[\\\"霍利奥克\\\"]\",\"dataId\":\"\",\"id\":\"2101\",\"name\":\"霍利奥克\",\"provinceId\":\"653\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2102,\"values\":{\"codes\":\"[\\\"Solano\\\"]\",\"dataId\":\"\",\"id\":\"2102\",\"name\":\"Solano\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2103,\"values\":{\"codes\":\"[\\\"San-Joaquin\\\"]\",\"dataId\":\"\",\"id\":\"2103\",\"name\":\"San-Joaquin\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2104,\"values\":{\"codes\":\"[\\\"Kings\\\"]\",\"dataId\":\"\",\"id\":\"2104\",\"name\":\"Kings\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2105,\"values\":{\"codes\":\"[\\\"Mariposa\\\"]\",\"dataId\":\"\",\"id\":\"2105\",\"name\":\"Mariposa\",\"provinceId\":\"276\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2106,\"values\":{\"codes\":\"[\\\"圣贝纳迪诺\\\"]\",\"dataId\":\"\",\"id\":\"2106\",\"name\":\"圣贝纳迪诺\",\"provinceId\":\"402\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"provinceId\"],\"exceptFields\":[\"customName\",\"customCodes\"]}]},{\"name\":\"edgeRegionCountries\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeRegionCountries` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `customName` varchar(255) DEFAULT NULL COMMENT '自定义名称',\\n `customCodes` json DEFAULT NULL COMMENT '自定义代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `dataId` varchar(255) DEFAULT NULL COMMENT '原始数据ID',\\n `pinyin` json DEFAULT NULL COMMENT '拼音',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-国家/地区'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"customName\",\"definition\":\"varchar(255) COMMENT '自定义名称'\"},{\"name\":\"customCodes\",\"definition\":\"json COMMENT '自定义代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"dataId\",\"definition\":\"varchar(255) COMMENT '原始数据ID'\"},{\"name\":\"pinyin\",\"definition\":\"json COMMENT '拼音'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[{\"id\":1,\"values\":{\"codes\":\"[\\\"中国\\\", \\\"中华人民共和国\\\"]\",\"dataId\":\"1\",\"id\":\"1\",\"name\":\"中国\",\"pinyin\":\"[\\\"zhong guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2,\"values\":{\"codes\":\"[\\\"蒙古\\\"]\",\"dataId\":\"2\",\"id\":\"2\",\"name\":\"蒙古\",\"pinyin\":\"[\\\"meng gu\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":3,\"values\":{\"codes\":\"[\\\"朝鲜\\\"]\",\"dataId\":\"3\",\"id\":\"3\",\"name\":\"朝鲜\",\"pinyin\":\"[\\\"chao xian\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":4,\"values\":{\"codes\":\"[\\\"韩国\\\"]\",\"dataId\":\"4\",\"id\":\"4\",\"name\":\"韩国\",\"pinyin\":\"[\\\"han guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":5,\"values\":{\"codes\":\"[\\\"日本\\\"]\",\"dataId\":\"5\",\"id\":\"5\",\"name\":\"日本\",\"pinyin\":\"[\\\"ri ben\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":6,\"values\":{\"codes\":\"[\\\"菲律宾\\\"]\",\"dataId\":\"6\",\"id\":\"6\",\"name\":\"菲律宾\",\"pinyin\":\"[\\\"fei lv bin\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":7,\"values\":{\"codes\":\"[\\\"越南\\\"]\",\"dataId\":\"7\",\"id\":\"7\",\"name\":\"越南\",\"pinyin\":\"[\\\"yue nan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":8,\"values\":{\"codes\":\"[\\\"老挝\\\"]\",\"dataId\":\"8\",\"id\":\"8\",\"name\":\"老挝\",\"pinyin\":\"[\\\"lao wo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":9,\"values\":{\"codes\":\"[\\\"柬埔寨\\\"]\",\"dataId\":\"9\",\"id\":\"9\",\"name\":\"柬埔寨\",\"pinyin\":\"[\\\"jian pu zhai\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":10,\"values\":{\"codes\":\"[\\\"缅甸\\\"]\",\"dataId\":\"10\",\"id\":\"10\",\"name\":\"缅甸\",\"pinyin\":\"[\\\"mian dian\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":11,\"values\":{\"codes\":\"[\\\"泰国\\\"]\",\"dataId\":\"11\",\"id\":\"11\",\"name\":\"泰国\",\"pinyin\":\"[\\\"tai guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":12,\"values\":{\"codes\":\"[\\\"马来西亚\\\"]\",\"dataId\":\"12\",\"id\":\"12\",\"name\":\"马来西亚\",\"pinyin\":\"[\\\"ma lai xi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":13,\"values\":{\"codes\":\"[\\\"文莱\\\"]\",\"dataId\":\"13\",\"id\":\"13\",\"name\":\"文莱\",\"pinyin\":\"[\\\"wen lai\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":14,\"values\":{\"codes\":\"[\\\"新加坡\\\"]\",\"dataId\":\"14\",\"id\":\"14\",\"name\":\"新加坡\",\"pinyin\":\"[\\\"xin jia po\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":15,\"values\":{\"codes\":\"[\\\"印度尼西亚\\\"]\",\"dataId\":\"15\",\"id\":\"15\",\"name\":\"印度尼西亚\",\"pinyin\":\"[\\\"yin du ni xi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":16,\"values\":{\"codes\":\"[\\\"东帝汶\\\"]\",\"dataId\":\"16\",\"id\":\"16\",\"name\":\"东帝汶\",\"pinyin\":\"[\\\"dong di wen\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":17,\"values\":{\"codes\":\"[\\\"尼泊尔\\\"]\",\"dataId\":\"17\",\"id\":\"17\",\"name\":\"尼泊尔\",\"pinyin\":\"[\\\"ni po er\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":18,\"values\":{\"codes\":\"[\\\"不丹\\\"]\",\"dataId\":\"18\",\"id\":\"18\",\"name\":\"不丹\",\"pinyin\":\"[\\\"bu dan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":19,\"values\":{\"codes\":\"[\\\"孟加拉国\\\", \\\"孟加拉\\\"]\",\"dataId\":\"19\",\"id\":\"19\",\"name\":\"孟加拉国\",\"pinyin\":\"[\\\"meng jia la guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":20,\"values\":{\"codes\":\"[\\\"印度\\\"]\",\"dataId\":\"20\",\"id\":\"20\",\"name\":\"印度\",\"pinyin\":\"[\\\"yin du\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":21,\"values\":{\"codes\":\"[\\\"巴基斯坦\\\"]\",\"dataId\":\"21\",\"id\":\"21\",\"name\":\"巴基斯坦\",\"pinyin\":\"[\\\"ba ji si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":22,\"values\":{\"codes\":\"[\\\"斯里兰卡\\\"]\",\"dataId\":\"22\",\"id\":\"22\",\"name\":\"斯里兰卡\",\"pinyin\":\"[\\\"si li lan ka\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":23,\"values\":{\"codes\":\"[\\\"马尔代夫\\\"]\",\"dataId\":\"23\",\"id\":\"23\",\"name\":\"马尔代夫\",\"pinyin\":\"[\\\"ma er dai fu\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":24,\"values\":{\"codes\":\"[\\\"哈萨克斯坦\\\"]\",\"dataId\":\"24\",\"id\":\"24\",\"name\":\"哈萨克斯坦\",\"pinyin\":\"[\\\"ha sa ke si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":25,\"values\":{\"codes\":\"[\\\"吉尔吉斯斯坦\\\"]\",\"dataId\":\"25\",\"id\":\"25\",\"name\":\"吉尔吉斯斯坦\",\"pinyin\":\"[\\\"ji er ji si si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":26,\"values\":{\"codes\":\"[\\\"塔吉克斯坦\\\"]\",\"dataId\":\"26\",\"id\":\"26\",\"name\":\"塔吉克斯坦\",\"pinyin\":\"[\\\"ta ji ke si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":27,\"values\":{\"codes\":\"[\\\"乌兹别克斯坦\\\"]\",\"dataId\":\"27\",\"id\":\"27\",\"name\":\"乌兹别克斯坦\",\"pinyin\":\"[\\\"wu zi bie ke si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":28,\"values\":{\"codes\":\"[\\\"土库曼斯坦\\\"]\",\"dataId\":\"28\",\"id\":\"28\",\"name\":\"土库曼斯坦\",\"pinyin\":\"[\\\"tu ku man si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":29,\"values\":{\"codes\":\"[\\\"阿富汗\\\"]\",\"dataId\":\"29\",\"id\":\"29\",\"name\":\"阿富汗\",\"pinyin\":\"[\\\"a fu han\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":30,\"values\":{\"codes\":\"[\\\"伊拉克\\\"]\",\"dataId\":\"30\",\"id\":\"30\",\"name\":\"伊拉克\",\"pinyin\":\"[\\\"yi la ke\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":31,\"values\":{\"codes\":\"[\\\"伊朗\\\"]\",\"dataId\":\"31\",\"id\":\"31\",\"name\":\"伊朗\",\"pinyin\":\"[\\\"yi lang\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":32,\"values\":{\"codes\":\"[\\\"叙利亚\\\"]\",\"dataId\":\"32\",\"id\":\"32\",\"name\":\"叙利亚\",\"pinyin\":\"[\\\"xu li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":33,\"values\":{\"codes\":\"[\\\"约旦\\\"]\",\"dataId\":\"33\",\"id\":\"33\",\"name\":\"约旦\",\"pinyin\":\"[\\\"yue dan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":34,\"values\":{\"codes\":\"[\\\"黎巴嫩\\\"]\",\"dataId\":\"34\",\"id\":\"34\",\"name\":\"黎巴嫩\",\"pinyin\":\"[\\\"li ba nen\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":35,\"values\":{\"codes\":\"[\\\"以色列\\\"]\",\"dataId\":\"35\",\"id\":\"35\",\"name\":\"以色列\",\"pinyin\":\"[\\\"yi se lie\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":36,\"values\":{\"codes\":\"[\\\"巴勒斯坦\\\"]\",\"dataId\":\"36\",\"id\":\"36\",\"name\":\"巴勒斯坦\",\"pinyin\":\"[\\\"ba lei si tan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":37,\"values\":{\"codes\":\"[\\\"沙特阿拉伯\\\"]\",\"dataId\":\"37\",\"id\":\"37\",\"name\":\"沙特阿拉伯\",\"pinyin\":\"[\\\"sha te a la bo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":38,\"values\":{\"codes\":\"[\\\"巴林\\\"]\",\"dataId\":\"38\",\"id\":\"38\",\"name\":\"巴林\",\"pinyin\":\"[\\\"ba lin\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":39,\"values\":{\"codes\":\"[\\\"卡塔尔\\\"]\",\"dataId\":\"39\",\"id\":\"39\",\"name\":\"卡塔尔\",\"pinyin\":\"[\\\"ka ta er\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":40,\"values\":{\"codes\":\"[\\\"科威特\\\"]\",\"dataId\":\"40\",\"id\":\"40\",\"name\":\"科威特\",\"pinyin\":\"[\\\"ke wei te\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":41,\"values\":{\"codes\":\"[\\\"阿拉伯联合酋长国\\\", \\\"阿联酋\\\"]\",\"dataId\":\"41\",\"id\":\"41\",\"name\":\"阿拉伯联合酋长国\",\"pinyin\":\"[\\\"a la bo lian he qiu zhang guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":42,\"values\":{\"codes\":\"[\\\"阿曼\\\"]\",\"dataId\":\"42\",\"id\":\"42\",\"name\":\"阿曼\",\"pinyin\":\"[\\\"a man\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":43,\"values\":{\"codes\":\"[\\\"也门\\\"]\",\"dataId\":\"43\",\"id\":\"43\",\"name\":\"也门\",\"pinyin\":\"[\\\"ye men\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":44,\"values\":{\"codes\":\"[\\\"格鲁吉亚\\\"]\",\"dataId\":\"44\",\"id\":\"44\",\"name\":\"格鲁吉亚\",\"pinyin\":\"[\\\"ge lu ji ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":45,\"values\":{\"codes\":\"[\\\"亚美尼亚\\\"]\",\"dataId\":\"45\",\"id\":\"45\",\"name\":\"亚美尼亚\",\"pinyin\":\"[\\\"ya mei ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":46,\"values\":{\"codes\":\"[\\\"阿塞拜疆\\\"]\",\"dataId\":\"46\",\"id\":\"46\",\"name\":\"阿塞拜疆\",\"pinyin\":\"[\\\"a sai bai jiang\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":47,\"values\":{\"codes\":\"[\\\"土耳其\\\"]\",\"dataId\":\"47\",\"id\":\"47\",\"name\":\"土耳其\",\"pinyin\":\"[\\\"tu er qi\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":48,\"values\":{\"codes\":\"[\\\"塞浦路斯\\\"]\",\"dataId\":\"48\",\"id\":\"48\",\"name\":\"塞浦路斯\",\"pinyin\":\"[\\\"sai pu lu si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":49,\"values\":{\"codes\":\"[\\\"芬兰\\\"]\",\"dataId\":\"49\",\"id\":\"49\",\"name\":\"芬兰\",\"pinyin\":\"[\\\"fen lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":50,\"values\":{\"codes\":\"[\\\"瑞典\\\"]\",\"dataId\":\"50\",\"id\":\"50\",\"name\":\"瑞典\",\"pinyin\":\"[\\\"rui dian\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":51,\"values\":{\"codes\":\"[\\\"挪威\\\"]\",\"dataId\":\"51\",\"id\":\"51\",\"name\":\"挪威\",\"pinyin\":\"[\\\"nuo wei\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":52,\"values\":{\"codes\":\"[\\\"冰岛\\\"]\",\"dataId\":\"52\",\"id\":\"52\",\"name\":\"冰岛\",\"pinyin\":\"[\\\"bing dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":53,\"values\":{\"codes\":\"[\\\"丹麦\\\"]\",\"dataId\":\"53\",\"id\":\"53\",\"name\":\"丹麦\",\"pinyin\":\"[\\\"dan mai\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":54,\"values\":{\"codes\":\"[\\\"爱沙尼亚\\\"]\",\"dataId\":\"54\",\"id\":\"54\",\"name\":\"爱沙尼亚\",\"pinyin\":\"[\\\"ai sha ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":55,\"values\":{\"codes\":\"[\\\"拉脱维亚\\\"]\",\"dataId\":\"55\",\"id\":\"55\",\"name\":\"拉脱维亚\",\"pinyin\":\"[\\\"la tuo wei ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":56,\"values\":{\"codes\":\"[\\\"立陶宛\\\"]\",\"dataId\":\"56\",\"id\":\"56\",\"name\":\"立陶宛\",\"pinyin\":\"[\\\"li tao wan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":57,\"values\":{\"codes\":\"[\\\"白俄罗斯\\\"]\",\"dataId\":\"57\",\"id\":\"57\",\"name\":\"白俄罗斯\",\"pinyin\":\"[\\\"bai e luo si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":58,\"values\":{\"codes\":\"[\\\"俄罗斯\\\"]\",\"dataId\":\"58\",\"id\":\"58\",\"name\":\"俄罗斯\",\"pinyin\":\"[\\\"e luo si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":59,\"values\":{\"codes\":\"[\\\"乌克兰\\\"]\",\"dataId\":\"59\",\"id\":\"59\",\"name\":\"乌克兰\",\"pinyin\":\"[\\\"wu ke lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":60,\"values\":{\"codes\":\"[\\\"摩尔多瓦\\\"]\",\"dataId\":\"60\",\"id\":\"60\",\"name\":\"摩尔多瓦\",\"pinyin\":\"[\\\"mo er duo wa\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":61,\"values\":{\"codes\":\"[\\\"波兰\\\"]\",\"dataId\":\"61\",\"id\":\"61\",\"name\":\"波兰\",\"pinyin\":\"[\\\"bo lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":62,\"values\":{\"codes\":\"[\\\"捷克\\\"]\",\"dataId\":\"62\",\"id\":\"62\",\"name\":\"捷克\",\"pinyin\":\"[\\\"jie ke\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":63,\"values\":{\"codes\":\"[\\\"斯洛伐克\\\"]\",\"dataId\":\"63\",\"id\":\"63\",\"name\":\"斯洛伐克\",\"pinyin\":\"[\\\"si luo fa ke\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":64,\"values\":{\"codes\":\"[\\\"匈牙利\\\"]\",\"dataId\":\"64\",\"id\":\"64\",\"name\":\"匈牙利\",\"pinyin\":\"[\\\"xiong ya li\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":65,\"values\":{\"codes\":\"[\\\"德国\\\"]\",\"dataId\":\"65\",\"id\":\"65\",\"name\":\"德国\",\"pinyin\":\"[\\\"de guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":66,\"values\":{\"codes\":\"[\\\"奥地利\\\"]\",\"dataId\":\"66\",\"id\":\"66\",\"name\":\"奥地利\",\"pinyin\":\"[\\\"ao de li\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":67,\"values\":{\"codes\":\"[\\\"瑞士\\\"]\",\"dataId\":\"67\",\"id\":\"67\",\"name\":\"瑞士\",\"pinyin\":\"[\\\"rui shi\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":68,\"values\":{\"codes\":\"[\\\"列支敦士登\\\"]\",\"dataId\":\"68\",\"id\":\"68\",\"name\":\"列支敦士登\",\"pinyin\":\"[\\\"lie zhi dun shi deng\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":69,\"values\":{\"codes\":\"[\\\"英国\\\"]\",\"dataId\":\"69\",\"id\":\"69\",\"name\":\"英国\",\"pinyin\":\"[\\\"ying guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":70,\"values\":{\"codes\":\"[\\\"爱尔兰\\\"]\",\"dataId\":\"70\",\"id\":\"70\",\"name\":\"爱尔兰\",\"pinyin\":\"[\\\"ai er lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":71,\"values\":{\"codes\":\"[\\\"荷兰\\\"]\",\"dataId\":\"71\",\"id\":\"71\",\"name\":\"荷兰\",\"pinyin\":\"[\\\"he lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":72,\"values\":{\"codes\":\"[\\\"比利时\\\"]\",\"dataId\":\"72\",\"id\":\"72\",\"name\":\"比利时\",\"pinyin\":\"[\\\"bi li shi\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":73,\"values\":{\"codes\":\"[\\\"卢森堡\\\"]\",\"dataId\":\"73\",\"id\":\"73\",\"name\":\"卢森堡\",\"pinyin\":\"[\\\"lu sen bao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":74,\"values\":{\"codes\":\"[\\\"法国\\\"]\",\"dataId\":\"74\",\"id\":\"74\",\"name\":\"法国\",\"pinyin\":\"[\\\"fa guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":75,\"values\":{\"codes\":\"[\\\"摩纳哥\\\"]\",\"dataId\":\"75\",\"id\":\"75\",\"name\":\"摩纳哥\",\"pinyin\":\"[\\\"mo na ge\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":76,\"values\":{\"codes\":\"[\\\"罗马尼亚\\\"]\",\"dataId\":\"76\",\"id\":\"76\",\"name\":\"罗马尼亚\",\"pinyin\":\"[\\\"luo ma ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":77,\"values\":{\"codes\":\"[\\\"保加利亚\\\"]\",\"dataId\":\"77\",\"id\":\"77\",\"name\":\"保加利亚\",\"pinyin\":\"[\\\"bao jia li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":78,\"values\":{\"codes\":\"[\\\"塞尔维亚\\\"]\",\"dataId\":\"78\",\"id\":\"78\",\"name\":\"塞尔维亚\",\"pinyin\":\"[\\\"sai er wei ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":79,\"values\":{\"codes\":\"[\\\"马其顿\\\"]\",\"dataId\":\"79\",\"id\":\"79\",\"name\":\"马其顿\",\"pinyin\":\"[\\\"ma qi dun\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":80,\"values\":{\"codes\":\"[\\\"阿尔巴尼亚\\\"]\",\"dataId\":\"80\",\"id\":\"80\",\"name\":\"阿尔巴尼亚\",\"pinyin\":\"[\\\"a er ba ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":81,\"values\":{\"codes\":\"[\\\"希腊\\\"]\",\"dataId\":\"81\",\"id\":\"81\",\"name\":\"希腊\",\"pinyin\":\"[\\\"xi la\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":82,\"values\":{\"codes\":\"[\\\"斯洛文尼亚\\\"]\",\"dataId\":\"82\",\"id\":\"82\",\"name\":\"斯洛文尼亚\",\"pinyin\":\"[\\\"si luo wen ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":83,\"values\":{\"codes\":\"[\\\"克罗地亚\\\"]\",\"dataId\":\"83\",\"id\":\"83\",\"name\":\"克罗地亚\",\"pinyin\":\"[\\\"ke luo de ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":84,\"values\":{\"codes\":\"[\\\"波斯尼亚和墨塞哥维那\\\"]\",\"dataId\":\"84\",\"id\":\"84\",\"name\":\"波斯尼亚和墨塞哥维那\",\"pinyin\":\"[\\\"bo si ni ya he mo sai ge wei na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":85,\"values\":{\"codes\":\"[\\\"意大利\\\"]\",\"dataId\":\"85\",\"id\":\"85\",\"name\":\"意大利\",\"pinyin\":\"[\\\"yi da li\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":86,\"values\":{\"codes\":\"[\\\"梵蒂冈\\\"]\",\"dataId\":\"86\",\"id\":\"86\",\"name\":\"梵蒂冈\",\"pinyin\":\"[\\\"fan di gang\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":87,\"values\":{\"codes\":\"[\\\"圣马力诺\\\"]\",\"dataId\":\"87\",\"id\":\"87\",\"name\":\"圣马力诺\",\"pinyin\":\"[\\\"sheng ma li nuo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":88,\"values\":{\"codes\":\"[\\\"马耳他\\\"]\",\"dataId\":\"88\",\"id\":\"88\",\"name\":\"马耳他\",\"pinyin\":\"[\\\"ma er ta\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":89,\"values\":{\"codes\":\"[\\\"西班牙\\\"]\",\"dataId\":\"89\",\"id\":\"89\",\"name\":\"西班牙\",\"pinyin\":\"[\\\"xi ban ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":90,\"values\":{\"codes\":\"[\\\"葡萄牙\\\"]\",\"dataId\":\"90\",\"id\":\"90\",\"name\":\"葡萄牙\",\"pinyin\":\"[\\\"pu tao ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":91,\"values\":{\"codes\":\"[\\\"安道尔共和国\\\", \\\"安道尔\\\"]\",\"dataId\":\"91\",\"id\":\"91\",\"name\":\"安道尔共和国\",\"pinyin\":\"[\\\"an dao er gong he guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":92,\"values\":{\"codes\":\"[\\\"埃及\\\"]\",\"dataId\":\"92\",\"id\":\"92\",\"name\":\"埃及\",\"pinyin\":\"[\\\"ai ji\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":93,\"values\":{\"codes\":\"[\\\"利比亚\\\"]\",\"dataId\":\"93\",\"id\":\"93\",\"name\":\"利比亚\",\"pinyin\":\"[\\\"li bi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":94,\"values\":{\"codes\":\"[\\\"苏丹\\\"]\",\"dataId\":\"94\",\"id\":\"94\",\"name\":\"苏丹\",\"pinyin\":\"[\\\"su dan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":95,\"values\":{\"codes\":\"[\\\"突尼斯\\\"]\",\"dataId\":\"95\",\"id\":\"95\",\"name\":\"突尼斯\",\"pinyin\":\"[\\\"tu ni si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":96,\"values\":{\"codes\":\"[\\\"阿尔及利亚\\\"]\",\"dataId\":\"96\",\"id\":\"96\",\"name\":\"阿尔及利亚\",\"pinyin\":\"[\\\"a er ji li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":97,\"values\":{\"codes\":\"[\\\"摩洛哥\\\"]\",\"dataId\":\"97\",\"id\":\"97\",\"name\":\"摩洛哥\",\"pinyin\":\"[\\\"mo luo ge\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":98,\"values\":{\"codes\":\"[\\\"亚速尔群岛\\\"]\",\"dataId\":\"98\",\"id\":\"98\",\"name\":\"亚速尔群岛\",\"pinyin\":\"[\\\"ya su er qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":99,\"values\":{\"codes\":\"[\\\"马德拉群岛\\\"]\",\"dataId\":\"99\",\"id\":\"99\",\"name\":\"马德拉群岛\",\"pinyin\":\"[\\\"ma de la qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":100,\"values\":{\"codes\":\"[\\\"埃塞俄比亚\\\"]\",\"dataId\":\"100\",\"id\":\"100\",\"name\":\"埃塞俄比亚\",\"pinyin\":\"[\\\"ai sai e bi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":101,\"values\":{\"codes\":\"[\\\"厄立特里亚\\\"]\",\"dataId\":\"101\",\"id\":\"101\",\"name\":\"厄立特里亚\",\"pinyin\":\"[\\\"e li te li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":102,\"values\":{\"codes\":\"[\\\"索马里\\\"]\",\"dataId\":\"102\",\"id\":\"102\",\"name\":\"索马里\",\"pinyin\":\"[\\\"suo ma li\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":103,\"values\":{\"codes\":\"[\\\"吉布提\\\"]\",\"dataId\":\"103\",\"id\":\"103\",\"name\":\"吉布提\",\"pinyin\":\"[\\\"ji bu ti\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":104,\"values\":{\"codes\":\"[\\\"肯尼亚\\\"]\",\"dataId\":\"104\",\"id\":\"104\",\"name\":\"肯尼亚\",\"pinyin\":\"[\\\"ken ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":105,\"values\":{\"codes\":\"[\\\"坦桑尼亚\\\"]\",\"dataId\":\"105\",\"id\":\"105\",\"name\":\"坦桑尼亚\",\"pinyin\":\"[\\\"tan sang ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":106,\"values\":{\"codes\":\"[\\\"乌干达\\\"]\",\"dataId\":\"106\",\"id\":\"106\",\"name\":\"乌干达\",\"pinyin\":\"[\\\"wu gan da\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":107,\"values\":{\"codes\":\"[\\\"卢旺达\\\"]\",\"dataId\":\"107\",\"id\":\"107\",\"name\":\"卢旺达\",\"pinyin\":\"[\\\"lu wang da\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":108,\"values\":{\"codes\":\"[\\\"布隆迪\\\"]\",\"dataId\":\"108\",\"id\":\"108\",\"name\":\"布隆迪\",\"pinyin\":\"[\\\"bu long di\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":109,\"values\":{\"codes\":\"[\\\"塞舌尔\\\"]\",\"dataId\":\"109\",\"id\":\"109\",\"name\":\"塞舌尔\",\"pinyin\":\"[\\\"sai she er\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":110,\"values\":{\"codes\":\"[\\\"圣多美及普林西比\\\", \\\"圣多美和普林西比\\\"]\",\"dataId\":\"110\",\"id\":\"110\",\"name\":\"圣多美及普林西比\",\"pinyin\":\"[\\\"sheng duo mei ji pu lin xi bi\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":111,\"values\":{\"codes\":\"[\\\"塞内加尔\\\"]\",\"dataId\":\"111\",\"id\":\"111\",\"name\":\"塞内加尔\",\"pinyin\":\"[\\\"sai nei jia er\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":112,\"values\":{\"codes\":\"[\\\"冈比亚\\\"]\",\"dataId\":\"112\",\"id\":\"112\",\"name\":\"冈比亚\",\"pinyin\":\"[\\\"gang bi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":113,\"values\":{\"codes\":\"[\\\"马里\\\"]\",\"dataId\":\"113\",\"id\":\"113\",\"name\":\"马里\",\"pinyin\":\"[\\\"ma li\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":114,\"values\":{\"codes\":\"[\\\"布基纳法索\\\"]\",\"dataId\":\"114\",\"id\":\"114\",\"name\":\"布基纳法索\",\"pinyin\":\"[\\\"bu ji na fa suo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":115,\"values\":{\"codes\":\"[\\\"几内亚\\\"]\",\"dataId\":\"115\",\"id\":\"115\",\"name\":\"几内亚\",\"pinyin\":\"[\\\"ji nei ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":116,\"values\":{\"codes\":\"[\\\"几内亚比绍\\\"]\",\"dataId\":\"116\",\"id\":\"116\",\"name\":\"几内亚比绍\",\"pinyin\":\"[\\\"ji nei ya bi shao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":117,\"values\":{\"codes\":\"[\\\"佛得角\\\"]\",\"dataId\":\"117\",\"id\":\"117\",\"name\":\"佛得角\",\"pinyin\":\"[\\\"fu de jiao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":118,\"values\":{\"codes\":\"[\\\"塞拉利昂\\\"]\",\"dataId\":\"118\",\"id\":\"118\",\"name\":\"塞拉利昂\",\"pinyin\":\"[\\\"sai la li ang\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":119,\"values\":{\"codes\":\"[\\\"利比里亚\\\"]\",\"dataId\":\"119\",\"id\":\"119\",\"name\":\"利比里亚\",\"pinyin\":\"[\\\"li bi li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":120,\"values\":{\"codes\":\"[\\\"科特迪瓦\\\"]\",\"dataId\":\"120\",\"id\":\"120\",\"name\":\"科特迪瓦\",\"pinyin\":\"[\\\"ke te di wa\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":121,\"values\":{\"codes\":\"[\\\"加纳\\\"]\",\"dataId\":\"121\",\"id\":\"121\",\"name\":\"加纳\",\"pinyin\":\"[\\\"jia na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":122,\"values\":{\"codes\":\"[\\\"多哥\\\"]\",\"dataId\":\"122\",\"id\":\"122\",\"name\":\"多哥\",\"pinyin\":\"[\\\"duo ge\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":123,\"values\":{\"codes\":\"[\\\"贝宁\\\"]\",\"dataId\":\"123\",\"id\":\"123\",\"name\":\"贝宁\",\"pinyin\":\"[\\\"bei ning\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":124,\"values\":{\"codes\":\"[\\\"尼日尔\\\"]\",\"dataId\":\"124\",\"id\":\"124\",\"name\":\"尼日尔\",\"pinyin\":\"[\\\"ni ri er\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":125,\"values\":{\"codes\":\"[\\\"加那利群岛\\\"]\",\"dataId\":\"125\",\"id\":\"125\",\"name\":\"加那利群岛\",\"pinyin\":\"[\\\"jia na li qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":126,\"values\":{\"codes\":\"[\\\"赞比亚\\\"]\",\"dataId\":\"126\",\"id\":\"126\",\"name\":\"赞比亚\",\"pinyin\":\"[\\\"zan bi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":127,\"values\":{\"codes\":\"[\\\"安哥拉\\\"]\",\"dataId\":\"127\",\"id\":\"127\",\"name\":\"安哥拉\",\"pinyin\":\"[\\\"an ge la\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":128,\"values\":{\"codes\":\"[\\\"津巴布韦\\\"]\",\"dataId\":\"128\",\"id\":\"128\",\"name\":\"津巴布韦\",\"pinyin\":\"[\\\"jin ba bu wei\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":129,\"values\":{\"codes\":\"[\\\"马拉维\\\"]\",\"dataId\":\"129\",\"id\":\"129\",\"name\":\"马拉维\",\"pinyin\":\"[\\\"ma la wei\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":130,\"values\":{\"codes\":\"[\\\"莫桑比克\\\"]\",\"dataId\":\"130\",\"id\":\"130\",\"name\":\"莫桑比克\",\"pinyin\":\"[\\\"mo sang bi ke\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":131,\"values\":{\"codes\":\"[\\\"博茨瓦纳\\\"]\",\"dataId\":\"131\",\"id\":\"131\",\"name\":\"博茨瓦纳\",\"pinyin\":\"[\\\"bo ci wa na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":132,\"values\":{\"codes\":\"[\\\"纳米比亚\\\"]\",\"dataId\":\"132\",\"id\":\"132\",\"name\":\"纳米比亚\",\"pinyin\":\"[\\\"na mi bi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":133,\"values\":{\"codes\":\"[\\\"南非\\\"]\",\"dataId\":\"133\",\"id\":\"133\",\"name\":\"南非\",\"pinyin\":\"[\\\"nan fei\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":134,\"values\":{\"codes\":\"[\\\"斯威士兰\\\"]\",\"dataId\":\"134\",\"id\":\"134\",\"name\":\"斯威士兰\",\"pinyin\":\"[\\\"si wei shi lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":135,\"values\":{\"codes\":\"[\\\"莱索托\\\"]\",\"dataId\":\"135\",\"id\":\"135\",\"name\":\"莱索托\",\"pinyin\":\"[\\\"lai suo tuo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":136,\"values\":{\"codes\":\"[\\\"马达加斯加\\\"]\",\"dataId\":\"136\",\"id\":\"136\",\"name\":\"马达加斯加\",\"pinyin\":\"[\\\"ma da jia si jia\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":137,\"values\":{\"codes\":\"[\\\"科摩罗\\\"]\",\"dataId\":\"137\",\"id\":\"137\",\"name\":\"科摩罗\",\"pinyin\":\"[\\\"ke mo luo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":138,\"values\":{\"codes\":\"[\\\"毛里求斯\\\"]\",\"dataId\":\"138\",\"id\":\"138\",\"name\":\"毛里求斯\",\"pinyin\":\"[\\\"mao li qiu si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":139,\"values\":{\"codes\":\"[\\\"留尼旺\\\", \\\"留尼汪岛\\\", \\\"留尼汪\\\"]\",\"dataId\":\"139\",\"id\":\"139\",\"name\":\"留尼旺\",\"pinyin\":\"[\\\"liu ni wang\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":140,\"values\":{\"codes\":\"[\\\"圣赫勒拿\\\"]\",\"dataId\":\"140\",\"id\":\"140\",\"name\":\"圣赫勒拿\",\"pinyin\":\"[\\\"sheng he lei na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":141,\"values\":{\"codes\":\"[\\\"澳大利亚\\\"]\",\"dataId\":\"141\",\"id\":\"141\",\"name\":\"澳大利亚\",\"pinyin\":\"[\\\"ao da li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":142,\"values\":{\"codes\":\"[\\\"新西兰\\\"]\",\"dataId\":\"142\",\"id\":\"142\",\"name\":\"新西兰\",\"pinyin\":\"[\\\"xin xi lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":143,\"values\":{\"codes\":\"[\\\"巴布亚新几内亚\\\"]\",\"dataId\":\"143\",\"id\":\"143\",\"name\":\"巴布亚新几内亚\",\"pinyin\":\"[\\\"ba bu ya xin ji nei ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":144,\"values\":{\"codes\":\"[\\\"所罗门群岛\\\"]\",\"dataId\":\"144\",\"id\":\"144\",\"name\":\"所罗门群岛\",\"pinyin\":\"[\\\"suo luo men qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":145,\"values\":{\"codes\":\"[\\\"瓦努阿图共和国\\\", \\\"瓦努阿图\\\"]\",\"dataId\":\"145\",\"id\":\"145\",\"name\":\"瓦努阿图共和国\",\"pinyin\":\"[\\\"wa nu a tu gong he guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":146,\"values\":{\"codes\":\"[\\\"密克罗尼西亚\\\"]\",\"dataId\":\"146\",\"id\":\"146\",\"name\":\"密克罗尼西亚\",\"pinyin\":\"[\\\"mi ke luo ni xi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":147,\"values\":{\"codes\":\"[\\\"马绍尔群岛\\\"]\",\"dataId\":\"147\",\"id\":\"147\",\"name\":\"马绍尔群岛\",\"pinyin\":\"[\\\"ma shao er qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":148,\"values\":{\"codes\":\"[\\\"帕劳\\\"]\",\"dataId\":\"148\",\"id\":\"148\",\"name\":\"帕劳\",\"pinyin\":\"[\\\"pa lao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":149,\"values\":{\"codes\":\"[\\\"瑙鲁\\\"]\",\"dataId\":\"149\",\"id\":\"149\",\"name\":\"瑙鲁\",\"pinyin\":\"[\\\"nao lu\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":150,\"values\":{\"codes\":\"[\\\"基里巴斯\\\"]\",\"dataId\":\"150\",\"id\":\"150\",\"name\":\"基里巴斯\",\"pinyin\":\"[\\\"ji li ba si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":151,\"values\":{\"codes\":\"[\\\"图瓦卢\\\"]\",\"dataId\":\"151\",\"id\":\"151\",\"name\":\"图瓦卢\",\"pinyin\":\"[\\\"tu wa lu\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":152,\"values\":{\"codes\":\"[\\\"萨摩亚\\\"]\",\"dataId\":\"152\",\"id\":\"152\",\"name\":\"萨摩亚\",\"pinyin\":\"[\\\"sa mo ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":153,\"values\":{\"codes\":\"[\\\"斐济\\\"]\",\"dataId\":\"153\",\"id\":\"153\",\"name\":\"斐济\",\"pinyin\":\"[\\\"fei ji\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":154,\"values\":{\"codes\":\"[\\\"汤加\\\"]\",\"dataId\":\"154\",\"id\":\"154\",\"name\":\"汤加\",\"pinyin\":\"[\\\"tang jia\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":155,\"values\":{\"codes\":\"[\\\"库克群岛\\\"]\",\"dataId\":\"155\",\"id\":\"155\",\"name\":\"库克群岛\",\"pinyin\":\"[\\\"ku ke qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":156,\"values\":{\"codes\":\"[\\\"关岛\\\"]\",\"dataId\":\"156\",\"id\":\"156\",\"name\":\"关岛\",\"pinyin\":\"[\\\"guan dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":157,\"values\":{\"codes\":\"[\\\"新喀里多尼亚\\\", \\\"新喀里多尼亚群岛\\\"]\",\"dataId\":\"157\",\"id\":\"157\",\"name\":\"新喀里多尼亚\",\"pinyin\":\"[\\\"xin ka li duo ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":158,\"values\":{\"codes\":\"[\\\"法属波利尼西亚\\\"]\",\"dataId\":\"158\",\"id\":\"158\",\"name\":\"法属波利尼西亚\",\"pinyin\":\"[\\\"fa shu bo li ni xi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":159,\"values\":{\"codes\":\"[\\\"皮特凯恩岛\\\"]\",\"dataId\":\"159\",\"id\":\"159\",\"name\":\"皮特凯恩岛\",\"pinyin\":\"[\\\"pi te kai en dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":160,\"values\":{\"codes\":\"[\\\"瓦利斯与富图纳\\\", \\\"瓦利斯和富图纳群岛\\\"]\",\"dataId\":\"160\",\"id\":\"160\",\"name\":\"瓦利斯与富图纳\",\"pinyin\":\"[\\\"wa li si yu fu tu na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":161,\"values\":{\"codes\":\"[\\\"纽埃\\\"]\",\"dataId\":\"161\",\"id\":\"161\",\"name\":\"纽埃\",\"pinyin\":\"[\\\"niu ai\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":162,\"values\":{\"codes\":\"[\\\"托克劳\\\", \\\"托克劳群岛\\\"]\",\"dataId\":\"162\",\"id\":\"162\",\"name\":\"托克劳\",\"pinyin\":\"[\\\"tuo ke lao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":163,\"values\":{\"codes\":\"[\\\"美属萨摩亚\\\"]\",\"dataId\":\"163\",\"id\":\"163\",\"name\":\"美属萨摩亚\",\"pinyin\":\"[\\\"mei shu sa mo ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":164,\"values\":{\"codes\":\"[\\\"北马里亚纳\\\", \\\"北马里亚纳群岛\\\"]\",\"dataId\":\"164\",\"id\":\"164\",\"name\":\"北马里亚纳\",\"pinyin\":\"[\\\"bei ma li ya na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":165,\"values\":{\"codes\":\"[\\\"加拿大\\\"]\",\"dataId\":\"165\",\"id\":\"165\",\"name\":\"加拿大\",\"pinyin\":\"[\\\"jia na da\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":166,\"values\":{\"codes\":\"[\\\"美国\\\"]\",\"dataId\":\"166\",\"id\":\"166\",\"name\":\"美国\",\"pinyin\":\"[\\\"mei guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":167,\"values\":{\"codes\":\"[\\\"墨西哥\\\"]\",\"dataId\":\"167\",\"id\":\"167\",\"name\":\"墨西哥\",\"pinyin\":\"[\\\"mo xi ge\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":168,\"values\":{\"codes\":\"[\\\"格陵兰\\\", \\\"格陵兰岛\\\"]\",\"dataId\":\"168\",\"id\":\"168\",\"name\":\"格陵兰\",\"pinyin\":\"[\\\"ge ling lan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":169,\"values\":{\"codes\":\"[\\\"危地马拉\\\"]\",\"dataId\":\"169\",\"id\":\"169\",\"name\":\"危地马拉\",\"pinyin\":\"[\\\"wei de ma la\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":170,\"values\":{\"codes\":\"[\\\"伯利兹\\\"]\",\"dataId\":\"170\",\"id\":\"170\",\"name\":\"伯利兹\",\"pinyin\":\"[\\\"bo li zi\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":171,\"values\":{\"codes\":\"[\\\"萨尔瓦多\\\"]\",\"dataId\":\"171\",\"id\":\"171\",\"name\":\"萨尔瓦多\",\"pinyin\":\"[\\\"sa er wa duo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":172,\"values\":{\"codes\":\"[\\\"洪都拉斯\\\"]\",\"dataId\":\"172\",\"id\":\"172\",\"name\":\"洪都拉斯\",\"pinyin\":\"[\\\"hong dou la si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":173,\"values\":{\"codes\":\"[\\\"尼加拉瓜\\\"]\",\"dataId\":\"173\",\"id\":\"173\",\"name\":\"尼加拉瓜\",\"pinyin\":\"[\\\"ni jia la gua\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":174,\"values\":{\"codes\":\"[\\\"哥斯达黎加\\\"]\",\"dataId\":\"174\",\"id\":\"174\",\"name\":\"哥斯达黎加\",\"pinyin\":\"[\\\"ge si da li jia\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":175,\"values\":{\"codes\":\"[\\\"巴拿马\\\"]\",\"dataId\":\"175\",\"id\":\"175\",\"name\":\"巴拿马\",\"pinyin\":\"[\\\"ba na ma\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":176,\"values\":{\"codes\":\"[\\\"巴哈马\\\"]\",\"dataId\":\"176\",\"id\":\"176\",\"name\":\"巴哈马\",\"pinyin\":\"[\\\"ba ha ma\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":177,\"values\":{\"codes\":\"[\\\"古巴\\\"]\",\"dataId\":\"177\",\"id\":\"177\",\"name\":\"古巴\",\"pinyin\":\"[\\\"gu ba\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":178,\"values\":{\"codes\":\"[\\\"牙买加\\\"]\",\"dataId\":\"178\",\"id\":\"178\",\"name\":\"牙买加\",\"pinyin\":\"[\\\"ya mai jia\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":179,\"values\":{\"codes\":\"[\\\"海地\\\"]\",\"dataId\":\"179\",\"id\":\"179\",\"name\":\"海地\",\"pinyin\":\"[\\\"hai de\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":180,\"values\":{\"codes\":\"[\\\"多米尼加共和国\\\", \\\"多米尼加\\\"]\",\"dataId\":\"180\",\"id\":\"180\",\"name\":\"多米尼加共和国\",\"pinyin\":\"[\\\"duo mi ni jia gong he guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":181,\"values\":{\"codes\":\"[\\\"安提瓜和巴布达\\\"]\",\"dataId\":\"181\",\"id\":\"181\",\"name\":\"安提瓜和巴布达\",\"pinyin\":\"[\\\"an ti gua he ba bu da\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":182,\"values\":{\"codes\":\"[\\\"圣基茨和尼维斯\\\"]\",\"dataId\":\"182\",\"id\":\"182\",\"name\":\"圣基茨和尼维斯\",\"pinyin\":\"[\\\"sheng ji ci he ni wei si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":183,\"values\":{\"codes\":\"[\\\"多米尼克\\\"]\",\"dataId\":\"183\",\"id\":\"183\",\"name\":\"多米尼克\",\"pinyin\":\"[\\\"duo mi ni ke\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":184,\"values\":{\"codes\":\"[\\\"圣卢西亚\\\"]\",\"dataId\":\"184\",\"id\":\"184\",\"name\":\"圣卢西亚\",\"pinyin\":\"[\\\"sheng lu xi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":185,\"values\":{\"codes\":\"[\\\"圣文森特和格林纳丁斯\\\"]\",\"dataId\":\"185\",\"id\":\"185\",\"name\":\"圣文森特和格林纳丁斯\",\"pinyin\":\"[\\\"sheng wen sen te he ge lin na ding si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":186,\"values\":{\"codes\":\"[\\\"格林纳达\\\"]\",\"dataId\":\"186\",\"id\":\"186\",\"name\":\"格林纳达\",\"pinyin\":\"[\\\"ge lin na da\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":187,\"values\":{\"codes\":\"[\\\"巴巴多斯\\\"]\",\"dataId\":\"187\",\"id\":\"187\",\"name\":\"巴巴多斯\",\"pinyin\":\"[\\\"ba ba duo si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":188,\"values\":{\"codes\":\"[\\\"特立尼达和多巴哥\\\"]\",\"dataId\":\"188\",\"id\":\"188\",\"name\":\"特立尼达和多巴哥\",\"pinyin\":\"[\\\"te li ni da he duo ba ge\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":189,\"values\":{\"codes\":\"[\\\"波多黎各\\\"]\",\"dataId\":\"189\",\"id\":\"189\",\"name\":\"波多黎各\",\"pinyin\":\"[\\\"bo duo li ge\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":190,\"values\":{\"codes\":\"[\\\"英属维尔京群岛\\\", \\\"英属维京群岛\\\"]\",\"dataId\":\"190\",\"id\":\"190\",\"name\":\"英属维尔京群岛\",\"pinyin\":\"[\\\"ying shu wei er jing qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":191,\"values\":{\"codes\":\"[\\\"美属维尔京群岛\\\"]\",\"dataId\":\"191\",\"id\":\"191\",\"name\":\"美属维尔京群岛\",\"pinyin\":\"[\\\"mei shu wei er jing qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":192,\"values\":{\"codes\":\"[\\\"安圭拉\\\"]\",\"dataId\":\"192\",\"id\":\"192\",\"name\":\"安圭拉\",\"pinyin\":\"[\\\"an gui la\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":193,\"values\":{\"codes\":\"[\\\"蒙特塞拉特岛\\\", \\\"蒙塞拉特岛\\\"]\",\"dataId\":\"193\",\"id\":\"193\",\"name\":\"蒙特塞拉特岛\",\"pinyin\":\"[\\\"meng te sai la te dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":194,\"values\":{\"codes\":\"[\\\"瓜德罗普\\\"]\",\"dataId\":\"194\",\"id\":\"194\",\"name\":\"瓜德罗普\",\"pinyin\":\"[\\\"gua de luo pu\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":195,\"values\":{\"codes\":\"[\\\"马提尼克\\\"]\",\"dataId\":\"195\",\"id\":\"195\",\"name\":\"马提尼克\",\"pinyin\":\"[\\\"ma ti ni ke\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":196,\"values\":{\"codes\":\"[\\\"荷属安的列斯\\\", \\\"安的列斯\\\"]\",\"dataId\":\"196\",\"id\":\"196\",\"name\":\"荷属安的列斯\",\"pinyin\":\"[\\\"he shu an de lie si\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":197,\"values\":{\"codes\":\"[\\\"阿鲁巴\\\"]\",\"dataId\":\"197\",\"id\":\"197\",\"name\":\"阿鲁巴\",\"pinyin\":\"[\\\"a lu ba\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":198,\"values\":{\"codes\":\"[\\\"特克斯和凯科斯群岛\\\"]\",\"dataId\":\"198\",\"id\":\"198\",\"name\":\"特克斯和凯科斯群岛\",\"pinyin\":\"[\\\"te ke si he kai ke si qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":199,\"values\":{\"codes\":\"[\\\"开曼群岛\\\"]\",\"dataId\":\"199\",\"id\":\"199\",\"name\":\"开曼群岛\",\"pinyin\":\"[\\\"kai man qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":200,\"values\":{\"codes\":\"[\\\"百慕大\\\", \\\"百慕大群岛\\\"]\",\"dataId\":\"200\",\"id\":\"200\",\"name\":\"百慕大\",\"pinyin\":\"[\\\"bai mu da\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":201,\"values\":{\"codes\":\"[\\\"哥伦比亚\\\"]\",\"dataId\":\"201\",\"id\":\"201\",\"name\":\"哥伦比亚\",\"pinyin\":\"[\\\"ge lun bi ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":202,\"values\":{\"codes\":\"[\\\"委内瑞拉\\\"]\",\"dataId\":\"202\",\"id\":\"202\",\"name\":\"委内瑞拉\",\"pinyin\":\"[\\\"wei nei rui la\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":203,\"values\":{\"codes\":\"[\\\"圭亚那\\\"]\",\"dataId\":\"203\",\"id\":\"203\",\"name\":\"圭亚那\",\"pinyin\":\"[\\\"gui ya na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":204,\"values\":{\"codes\":\"[\\\"法属圭亚那\\\"]\",\"dataId\":\"204\",\"id\":\"204\",\"name\":\"法属圭亚那\",\"pinyin\":\"[\\\"fa shu gui ya na\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":205,\"values\":{\"codes\":\"[\\\"苏里南\\\"]\",\"dataId\":\"205\",\"id\":\"205\",\"name\":\"苏里南\",\"pinyin\":\"[\\\"su li nan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":206,\"values\":{\"codes\":\"[\\\"厄瓜多尔\\\"]\",\"dataId\":\"206\",\"id\":\"206\",\"name\":\"厄瓜多尔\",\"pinyin\":\"[\\\"e gua duo er\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":207,\"values\":{\"codes\":\"[\\\"秘鲁\\\"]\",\"dataId\":\"207\",\"id\":\"207\",\"name\":\"秘鲁\",\"pinyin\":\"[\\\"mi lu\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":208,\"values\":{\"codes\":\"[\\\"玻利维亚\\\"]\",\"dataId\":\"208\",\"id\":\"208\",\"name\":\"玻利维亚\",\"pinyin\":\"[\\\"bo li wei ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":209,\"values\":{\"codes\":\"[\\\"巴西\\\"]\",\"dataId\":\"209\",\"id\":\"209\",\"name\":\"巴西\",\"pinyin\":\"[\\\"ba xi\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":210,\"values\":{\"codes\":\"[\\\"智利\\\"]\",\"dataId\":\"210\",\"id\":\"210\",\"name\":\"智利\",\"pinyin\":\"[\\\"zhi li\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":211,\"values\":{\"codes\":\"[\\\"阿根廷\\\"]\",\"dataId\":\"211\",\"id\":\"211\",\"name\":\"阿根廷\",\"pinyin\":\"[\\\"a gen ting\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":212,\"values\":{\"codes\":\"[\\\"乌拉圭\\\"]\",\"dataId\":\"212\",\"id\":\"212\",\"name\":\"乌拉圭\",\"pinyin\":\"[\\\"wu la gui\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":213,\"values\":{\"codes\":\"[\\\"巴拉圭\\\"]\",\"dataId\":\"213\",\"id\":\"213\",\"name\":\"巴拉圭\",\"pinyin\":\"[\\\"ba la gui\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":214,\"values\":{\"codes\":\"[\\\"波黑\\\"]\",\"dataId\":\"3405\",\"id\":\"214\",\"name\":\"波黑\",\"pinyin\":\"[\\\"bo hei\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":215,\"values\":{\"codes\":\"[\\\"直布罗陀\\\"]\",\"dataId\":\"3406\",\"id\":\"215\",\"name\":\"直布罗陀\",\"pinyin\":\"[\\\"zhi bu luo tuo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":216,\"values\":{\"codes\":\"[\\\"新喀里多尼亚群岛\\\"]\",\"dataId\":\"3407\",\"id\":\"216\",\"name\":\"新喀里多尼亚群岛\",\"pinyin\":\"[\\\"xin ka li duo ni ya qun dao\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":217,\"values\":{\"codes\":\"[\\\"瓦利斯和富图纳群岛\\\"]\",\"dataId\":\"3408\",\"id\":\"217\",\"name\":\"瓦利斯和富图纳群岛\",\"pinyin\":\"[\\\"wa li si he fu tu na qun dao\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":218,\"values\":{\"codes\":\"[\\\"泽西岛\\\"]\",\"dataId\":\"3409\",\"id\":\"218\",\"name\":\"泽西岛\",\"pinyin\":\"[\\\"ze xi dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":219,\"values\":{\"codes\":\"[\\\"黑山\\\"]\",\"dataId\":\"3410\",\"id\":\"219\",\"name\":\"黑山\",\"pinyin\":\"[\\\"hei shan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":220,\"values\":{\"codes\":\"[\\\"英属马恩岛\\\", \\\"马恩岛\\\"]\",\"dataId\":\"3411\",\"id\":\"220\",\"name\":\"英属马恩岛\",\"pinyin\":\"[\\\"ying shu ma en dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":221,\"values\":{\"codes\":\"[\\\"尼日利亚\\\"]\",\"dataId\":\"3412\",\"id\":\"221\",\"name\":\"尼日利亚\",\"pinyin\":\"[\\\"ni ri li ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":222,\"values\":{\"codes\":\"[\\\"喀麦隆\\\"]\",\"dataId\":\"3413\",\"id\":\"222\",\"name\":\"喀麦隆\",\"pinyin\":\"[\\\"ka mai long\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":223,\"values\":{\"codes\":\"[\\\"加蓬\\\"]\",\"dataId\":\"3414\",\"id\":\"223\",\"name\":\"加蓬\",\"pinyin\":\"[\\\"jia peng\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":224,\"values\":{\"codes\":\"[\\\"乍得\\\"]\",\"dataId\":\"3415\",\"id\":\"224\",\"name\":\"乍得\",\"pinyin\":\"[\\\"zha de\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":225,\"values\":{\"codes\":\"[\\\"刚果共和国\\\", \\\"刚果布\\\"]\",\"dataId\":\"3416\",\"id\":\"225\",\"name\":\"刚果共和国\",\"pinyin\":\"[\\\"gang guo gong he guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":226,\"values\":{\"codes\":\"[\\\"中非共和国\\\", \\\"中非\\\"]\",\"dataId\":\"3417\",\"id\":\"226\",\"name\":\"中非共和国\",\"pinyin\":\"[\\\"zhong fei gong he guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":227,\"values\":{\"codes\":\"[\\\"南苏丹\\\"]\",\"dataId\":\"3418\",\"id\":\"227\",\"name\":\"南苏丹\",\"pinyin\":\"[\\\"nan su dan\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":228,\"values\":{\"codes\":\"[\\\"赤道几内亚\\\"]\",\"dataId\":\"3419\",\"id\":\"228\",\"name\":\"赤道几内亚\",\"pinyin\":\"[\\\"chi dao ji nei ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":229,\"values\":{\"codes\":\"[\\\"毛里塔尼亚\\\", \\\"毛利塔尼亚\\\"]\",\"dataId\":\"3420\",\"id\":\"229\",\"name\":\"毛里塔尼亚\",\"pinyin\":\"[\\\"mao li ta ni ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":230,\"values\":{\"codes\":\"[\\\"刚果民主共和国\\\", \\\"刚果金\\\"]\",\"dataId\":\"3421\",\"id\":\"230\",\"name\":\"刚果民主共和国\",\"pinyin\":\"[\\\"gang guo min zhu gong he guo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":231,\"values\":{\"codes\":\"[\\\"留尼汪岛\\\"]\",\"dataId\":\"3422\",\"id\":\"231\",\"name\":\"留尼汪岛\",\"pinyin\":\"[\\\"liu ni wang dao\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":232,\"values\":{\"codes\":\"[\\\"格陵兰岛\\\"]\",\"dataId\":\"3423\",\"id\":\"232\",\"name\":\"格陵兰岛\",\"pinyin\":\"[\\\"ge ling lan dao\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":233,\"values\":{\"codes\":\"[\\\"法罗群岛\\\"]\",\"dataId\":\"3424\",\"id\":\"233\",\"name\":\"法罗群岛\",\"pinyin\":\"[\\\"fa luo qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":234,\"values\":{\"codes\":\"[\\\"根西岛\\\"]\",\"dataId\":\"3425\",\"id\":\"234\",\"name\":\"根西岛\",\"pinyin\":\"[\\\"gen xi dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":235,\"values\":{\"codes\":\"[\\\"百慕大群岛\\\"]\",\"dataId\":\"3432\",\"id\":\"235\",\"name\":\"百慕大群岛\",\"pinyin\":\"[\\\"bai mu da qun dao\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":236,\"values\":{\"codes\":\"[\\\"圣皮埃尔和密克隆群岛\\\"]\",\"dataId\":\"3433\",\"id\":\"236\",\"name\":\"圣皮埃尔和密克隆群岛\",\"pinyin\":\"[\\\"sheng pi ai er he mi ke long qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":237,\"values\":{\"codes\":\"[\\\"法属圣马丁\\\"]\",\"dataId\":\"3434\",\"id\":\"237\",\"name\":\"法属圣马丁\",\"pinyin\":\"[\\\"fa shu sheng ma ding\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":238,\"values\":{\"codes\":\"[\\\"奥兰群岛\\\"]\",\"dataId\":\"3435\",\"id\":\"238\",\"name\":\"奥兰群岛\",\"pinyin\":\"[\\\"ao lan qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":239,\"values\":{\"codes\":\"[\\\"北马里亚纳群岛\\\"]\",\"dataId\":\"3436\",\"id\":\"239\",\"name\":\"北马里亚纳群岛\",\"pinyin\":\"[\\\"bei ma li ya na qun dao\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":240,\"values\":{\"codes\":\"[\\\"库拉索\\\"]\",\"dataId\":\"3437\",\"id\":\"240\",\"name\":\"库拉索\",\"pinyin\":\"[\\\"ku la suo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":241,\"values\":{\"codes\":\"[\\\"博内尔岛\\\"]\",\"dataId\":\"3438\",\"id\":\"241\",\"name\":\"博内尔岛\",\"pinyin\":\"[\\\"bo nei er dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":242,\"values\":{\"codes\":\"[\\\"圣马丁岛\\\", \\\"圣马丁\\\"]\",\"dataId\":\"3439\",\"id\":\"242\",\"name\":\"圣马丁岛\",\"pinyin\":\"[\\\"sheng ma ding dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":243,\"values\":{\"codes\":\"[\\\"圣巴泰勒米岛\\\", \\\"圣巴泰勒米\\\"]\",\"dataId\":\"3440\",\"id\":\"243\",\"name\":\"圣巴泰勒米岛\",\"pinyin\":\"[\\\"sheng ba tai lei mi dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":244,\"values\":{\"codes\":\"[\\\"福克兰群岛\\\"]\",\"dataId\":\"3441\",\"id\":\"244\",\"name\":\"福克兰群岛\",\"pinyin\":\"[\\\"fu ke lan qun dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":245,\"values\":{\"codes\":\"[\\\"圣多美和普林西比\\\"]\",\"dataId\":\"3442\",\"id\":\"245\",\"name\":\"圣多美和普林西比\",\"pinyin\":\"[\\\"sheng duo mei he pu lin xi bi\\\"]\",\"state\":\"0\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":246,\"values\":{\"codes\":\"[\\\"英属印度洋领地\\\"]\",\"dataId\":\"3443\",\"id\":\"246\",\"name\":\"英属印度洋领地\",\"pinyin\":\"[\\\"ying shu yin du yang ling de\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":247,\"values\":{\"codes\":\"[\\\"东萨摩亚\\\"]\",\"dataId\":\"3444\",\"id\":\"247\",\"name\":\"东萨摩亚\",\"pinyin\":\"[\\\"dong sa mo ya\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":248,\"values\":{\"codes\":\"[\\\"诺福克岛\\\"]\",\"dataId\":\"3445\",\"id\":\"248\",\"name\":\"诺福克岛\",\"pinyin\":\"[\\\"nuo fu ke dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":249,\"values\":{\"codes\":\"[\\\"法属马约特岛\\\", \\\"马约特岛\\\", \\\"马约特\\\"]\",\"dataId\":\"\",\"id\":\"249\",\"name\":\"马约特岛\",\"pinyin\":\"[\\\"ma yue te dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":250,\"values\":{\"codes\":\"[\\\"科索沃\\\"]\",\"dataId\":\"\",\"id\":\"250\",\"name\":\"科索沃\",\"pinyin\":\"[\\\"ke suo wo\\\", \\\"Kosovo\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":251,\"values\":{\"codes\":\"[\\\"荷属圣马丁\\\"]\",\"dataId\":\"\",\"id\":\"251\",\"name\":\"荷属圣马丁\",\"pinyin\":\"[\\\"he shu sheng ma ding\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":252,\"values\":{\"codes\":\"[\\\"南乔治亚岛和南桑威奇群岛\\\"]\",\"dataId\":\"\",\"id\":\"252\",\"name\":\"南乔治亚岛和南桑威奇群岛\",\"pinyin\":\"[\\\"nan qiao zhi ya dao he nan sang wei qi qun dao\\\", \\\"South Georgia and The South Sandwich Islands\\\", \\\"SGSSI\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":253,\"values\":{\"codes\":\"[\\\"南极洲\\\"]\",\"dataId\":\"\",\"id\":\"253\",\"name\":\"南极洲\",\"pinyin\":\"[\\\"nan ji zhou\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":254,\"values\":{\"codes\":\"[\\\"阿森松岛\\\"]\",\"dataId\":\"\",\"id\":\"254\",\"name\":\"阿森松岛\",\"pinyin\":\"[\\\"a sen song dao\\\", \\\"Ascension Island\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":255,\"values\":{\"codes\":\"[\\\"圣诞岛\\\"]\",\"dataId\":\"\",\"id\":\"255\",\"name\":\"圣诞岛\",\"pinyin\":\"[\\\"sheng dan dao\\\"]\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]}]},{\"name\":\"edgeRegionProviders\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeRegionProviders` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `customName` varchar(255) DEFAULT NULL COMMENT '自定义名称',\\n `customCodes` json DEFAULT NULL COMMENT '自定义代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-运营商'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"customName\",\"definition\":\"varchar(255) COMMENT '自定义名称'\"},{\"name\":\"customCodes\",\"definition\":\"json COMMENT '自定义代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[{\"id\":1,\"values\":{\"codes\":\"[\\\"电信\\\"]\",\"id\":\"1\",\"name\":\"电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2,\"values\":{\"codes\":\"[\\\"TOT\\\"]\",\"id\":\"2\",\"name\":\"TOT\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":3,\"values\":{\"codes\":\"[\\\"联通\\\"]\",\"id\":\"3\",\"name\":\"联通\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":4,\"values\":{\"codes\":\"[\\\"谷歌\\\"]\",\"id\":\"4\",\"name\":\"谷歌\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":5,\"values\":{\"codes\":\"[\\\"软银\\\"]\",\"id\":\"5\",\"name\":\"软银\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":6,\"values\":{\"codes\":\"[\\\"Sify\\\"]\",\"id\":\"6\",\"name\":\"Sify\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":7,\"values\":{\"codes\":\"[\\\"马来西亚电信\\\"]\",\"id\":\"7\",\"name\":\"马来西亚电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":8,\"values\":{\"codes\":\"[\\\"方正宽带\\\"]\",\"id\":\"8\",\"name\":\"方正宽带\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":9,\"values\":{\"codes\":\"[\\\"Tikona\\\"]\",\"id\":\"9\",\"name\":\"Tikona\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":10,\"values\":{\"codes\":\"[\\\"新加坡电信\\\"]\",\"id\":\"10\",\"name\":\"新加坡电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":11,\"values\":{\"codes\":\"[\\\"日本电信电话\\\"]\",\"id\":\"11\",\"name\":\"日本电信电话\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":12,\"values\":{\"codes\":\"[\\\"中华电信\\\"]\",\"id\":\"12\",\"name\":\"中华电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":13,\"values\":{\"codes\":\"[\\\"电讯盈科\\\"]\",\"id\":\"13\",\"name\":\"电讯盈科\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":14,\"values\":{\"codes\":\"[\\\"Globe-Telecom\\\"]\",\"id\":\"14\",\"name\":\"Globe-Telecom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":15,\"values\":{\"codes\":\"[\\\"沃达丰印度\\\"]\",\"id\":\"15\",\"name\":\"沃达丰印度\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":16,\"values\":{\"codes\":\"[\\\"Optus\\\"]\",\"id\":\"16\",\"name\":\"Optus\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":17,\"values\":{\"codes\":\"[\\\"DTAC\\\"]\",\"id\":\"17\",\"name\":\"DTAC\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":18,\"values\":{\"codes\":\"[\\\"教育网\\\"]\",\"id\":\"18\",\"name\":\"教育网\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":19,\"values\":{\"codes\":\"[\\\"Finance-and-Promoting-Technology\\\"]\",\"id\":\"19\",\"name\":\"Finance-and-Promoting-Technology\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":20,\"values\":{\"codes\":\"[\\\"多科莫\\\"]\",\"id\":\"20\",\"name\":\"多科莫\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":21,\"values\":{\"codes\":\"[\\\"歌华\\\"]\",\"id\":\"21\",\"name\":\"歌华\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":22,\"values\":{\"codes\":\"[\\\"鹏博士\\\"]\",\"id\":\"22\",\"name\":\"鹏博士\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":23,\"values\":{\"codes\":\"[\\\"韩国电信\\\"]\",\"id\":\"23\",\"name\":\"韩国电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":24,\"values\":{\"codes\":\"[\\\"腾讯\\\"]\",\"id\":\"24\",\"name\":\"腾讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":25,\"values\":{\"codes\":\"[\\\"皓宽网络\\\"]\",\"id\":\"25\",\"name\":\"皓宽网络\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":26,\"values\":{\"codes\":\"[\\\"澳大利亚电信\\\"]\",\"id\":\"26\",\"name\":\"澳大利亚电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":27,\"values\":{\"codes\":\"[\\\"阿里云\\\"]\",\"id\":\"27\",\"name\":\"阿里云\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":28,\"values\":{\"codes\":\"[\\\"Dvois\\\"]\",\"id\":\"28\",\"name\":\"Dvois\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":29,\"values\":{\"codes\":\"[\\\"台湾之星\\\"]\",\"id\":\"29\",\"name\":\"台湾之星\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":30,\"values\":{\"codes\":\"[\\\"KINX\\\"]\",\"id\":\"30\",\"name\":\"KINX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":31,\"values\":{\"codes\":\"[\\\"SK宽带\\\"]\",\"id\":\"31\",\"name\":\"SK宽带\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":32,\"values\":{\"codes\":\"[\\\"橘子电信\\\"]\",\"id\":\"32\",\"name\":\"橘子电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":33,\"values\":{\"codes\":\"[\\\"阿卡迈\\\"]\",\"id\":\"33\",\"name\":\"阿卡迈\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":34,\"values\":{\"codes\":\"[\\\"沃达丰\\\"]\",\"id\":\"34\",\"name\":\"沃达丰\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":35,\"values\":{\"codes\":\"[\\\"科进\\\"]\",\"id\":\"35\",\"name\":\"科进\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":36,\"values\":{\"codes\":\"[\\\"GTT\\\"]\",\"id\":\"36\",\"name\":\"GTT\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":37,\"values\":{\"codes\":\"[\\\"康卡斯特\\\"]\",\"id\":\"37\",\"name\":\"康卡斯特\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":38,\"values\":{\"codes\":\"[\\\"俄罗斯电信\\\"]\",\"id\":\"38\",\"name\":\"俄罗斯电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":39,\"values\":{\"codes\":\"[\\\"VimpelCom\\\"]\",\"id\":\"39\",\"name\":\"VimpelCom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":40,\"values\":{\"codes\":\"[\\\"意大利电信\\\"]\",\"id\":\"40\",\"name\":\"意大利电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":41,\"values\":{\"codes\":\"[\\\"Telenor\\\"]\",\"id\":\"41\",\"name\":\"Telenor\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":42,\"values\":{\"codes\":\"[\\\"哈萨克斯坦电信\\\"]\",\"id\":\"42\",\"name\":\"哈萨克斯坦电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":43,\"values\":{\"codes\":\"[\\\"西班牙电信\\\"]\",\"id\":\"43\",\"name\":\"西班牙电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":44,\"values\":{\"codes\":\"[\\\"FastWeb\\\"]\",\"id\":\"44\",\"name\":\"FastWeb\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":45,\"values\":{\"codes\":\"[\\\"Telia-Company\\\"]\",\"id\":\"45\",\"name\":\"Telia-Company\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":46,\"values\":{\"codes\":\"[\\\"亚马逊\\\"]\",\"id\":\"46\",\"name\":\"亚马逊\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":47,\"values\":{\"codes\":\"[\\\"Level3\\\"]\",\"id\":\"47\",\"name\":\"Level3\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":48,\"values\":{\"codes\":\"[\\\"微软\\\"]\",\"id\":\"48\",\"name\":\"微软\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":49,\"values\":{\"codes\":\"[\\\"Trans-Telecom\\\"]\",\"id\":\"49\",\"name\":\"Trans-Telecom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":50,\"values\":{\"codes\":\"[\\\"Mobile-TeleSystems\\\"]\",\"id\":\"50\",\"name\":\"Mobile-TeleSystems\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":51,\"values\":{\"codes\":\"[\\\"Liberty\\\"]\",\"id\":\"51\",\"name\":\"Liberty\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":52,\"values\":{\"codes\":\"[\\\"SoftLayer\\\"]\",\"id\":\"52\",\"name\":\"SoftLayer\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":53,\"values\":{\"codes\":\"[\\\"卡塔尔电信\\\"]\",\"id\":\"53\",\"name\":\"卡塔尔电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":54,\"values\":{\"codes\":\"[\\\"Tata\\\"]\",\"id\":\"54\",\"name\":\"Tata\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":55,\"values\":{\"codes\":\"[\\\"阿曼电信\\\"]\",\"id\":\"55\",\"name\":\"阿曼电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":56,\"values\":{\"codes\":\"[\\\"T-Mobile\\\"]\",\"id\":\"56\",\"name\":\"T-Mobile\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":57,\"values\":{\"codes\":\"[\\\"Altice\\\"]\",\"id\":\"57\",\"name\":\"Altice\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":58,\"values\":{\"codes\":\"[\\\"威瑞森\\\"]\",\"id\":\"58\",\"name\":\"威瑞森\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":59,\"values\":{\"codes\":\"[\\\"美国电话电报\\\"]\",\"id\":\"59\",\"name\":\"美国电话电报\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":60,\"values\":{\"codes\":\"[\\\"Hurricane-Electric\\\"]\",\"id\":\"60\",\"name\":\"Hurricane-Electric\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":61,\"values\":{\"codes\":\"[\\\"Equinix\\\"]\",\"id\":\"61\",\"name\":\"Equinix\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":62,\"values\":{\"codes\":\"[\\\"移动\\\"]\",\"id\":\"62\",\"name\":\"移动\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":63,\"values\":{\"codes\":\"[\\\"CAT\\\"]\",\"id\":\"63\",\"name\":\"CAT\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":64,\"values\":{\"codes\":\"[\\\"Kvant-Telecom\\\"]\",\"id\":\"64\",\"name\":\"Kvant-Telecom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":65,\"values\":{\"codes\":\"[\\\"俄罗斯Tele2\\\"]\",\"id\":\"65\",\"name\":\"俄罗斯Tele2\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":66,\"values\":{\"codes\":\"[\\\"Smart\\\"]\",\"id\":\"66\",\"name\":\"Smart\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":67,\"values\":{\"codes\":\"[\\\"RETN\\\"]\",\"id\":\"67\",\"name\":\"RETN\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":68,\"values\":{\"codes\":\"[\\\"Net1\\\"]\",\"id\":\"68\",\"name\":\"Net1\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":69,\"values\":{\"codes\":\"[\\\"阿里巴巴\\\"]\",\"id\":\"69\",\"name\":\"阿里巴巴\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":70,\"values\":{\"codes\":\"[\\\"KDDI\\\"]\",\"id\":\"70\",\"name\":\"KDDI\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":71,\"values\":{\"codes\":\"[\\\"广州驰联\\\"]\",\"id\":\"71\",\"name\":\"广州驰联\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":72,\"values\":{\"codes\":\"[\\\"香港宽频\\\"]\",\"id\":\"72\",\"name\":\"香港宽频\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":73,\"values\":{\"codes\":\"[\\\"雅虎\\\"]\",\"id\":\"73\",\"name\":\"雅虎\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":74,\"values\":{\"codes\":\"[\\\"层峰网络\\\"]\",\"id\":\"74\",\"name\":\"层峰网络\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":75,\"values\":{\"codes\":\"[\\\"越南邮电\\\"]\",\"id\":\"75\",\"name\":\"越南邮电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":76,\"values\":{\"codes\":\"[\\\"Ctrls\\\"]\",\"id\":\"76\",\"name\":\"Ctrls\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":77,\"values\":{\"codes\":\"[\\\"Indusind\\\"]\",\"id\":\"77\",\"name\":\"Indusind\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":78,\"values\":{\"codes\":\"[\\\"GTPL\\\"]\",\"id\":\"78\",\"name\":\"GTPL\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":79,\"values\":{\"codes\":\"[\\\"MAXIS\\\"]\",\"id\":\"79\",\"name\":\"MAXIS\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":80,\"values\":{\"codes\":\"[\\\"TPG电信\\\"]\",\"id\":\"80\",\"name\":\"TPG电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":81,\"values\":{\"codes\":\"[\\\"Jastel\\\"]\",\"id\":\"81\",\"name\":\"Jastel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":82,\"values\":{\"codes\":\"[\\\"苹果\\\"]\",\"id\":\"82\",\"name\":\"苹果\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":83,\"values\":{\"codes\":\"[\\\"印度电信\\\"]\",\"id\":\"83\",\"name\":\"印度电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":84,\"values\":{\"codes\":\"[\\\"ACT\\\"]\",\"id\":\"84\",\"name\":\"ACT\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":85,\"values\":{\"codes\":\"[\\\"Telus\\\"]\",\"id\":\"85\",\"name\":\"Telus\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":86,\"values\":{\"codes\":\"[\\\"JIO\\\"]\",\"id\":\"86\",\"name\":\"JIO\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":87,\"values\":{\"codes\":\"[\\\"Telin\\\"]\",\"id\":\"87\",\"name\":\"Telin\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":88,\"values\":{\"codes\":\"[\\\"Claro\\\"]\",\"id\":\"88\",\"name\":\"Claro\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":89,\"values\":{\"codes\":\"[\\\"Fastly\\\"]\",\"id\":\"89\",\"name\":\"Fastly\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":90,\"values\":{\"codes\":\"[\\\"CenturyLink\\\"]\",\"id\":\"90\",\"name\":\"CenturyLink\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":91,\"values\":{\"codes\":\"[\\\"罗杰斯通信\\\"]\",\"id\":\"91\",\"name\":\"罗杰斯通信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":92,\"values\":{\"codes\":\"[\\\"EarthLink\\\"]\",\"id\":\"92\",\"name\":\"EarthLink\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":93,\"values\":{\"codes\":\"[\\\"Sprint\\\"]\",\"id\":\"93\",\"name\":\"Sprint\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":94,\"values\":{\"codes\":\"[\\\"BSNL\\\"]\",\"id\":\"94\",\"name\":\"BSNL\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":95,\"values\":{\"codes\":\"[\\\"HathWay\\\"]\",\"id\":\"95\",\"name\":\"HathWay\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":96,\"values\":{\"codes\":\"[\\\"远传电信\\\"]\",\"id\":\"96\",\"name\":\"远传电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":97,\"values\":{\"codes\":\"[\\\"星和移动\\\"]\",\"id\":\"97\",\"name\":\"星和移动\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":98,\"values\":{\"codes\":\"[\\\"信实通信\\\"]\",\"id\":\"98\",\"name\":\"信实通信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":99,\"values\":{\"codes\":\"[\\\"True\\\"]\",\"id\":\"99\",\"name\":\"True\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":100,\"values\":{\"codes\":\"[\\\"Mahataa\\\"]\",\"id\":\"100\",\"name\":\"Mahataa\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":101,\"values\":{\"codes\":\"[\\\"越南军用通讯\\\"]\",\"id\":\"101\",\"name\":\"越南军用通讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":102,\"values\":{\"codes\":\"[\\\"Ezecom\\\"]\",\"id\":\"102\",\"name\":\"Ezecom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":103,\"values\":{\"codes\":\"[\\\"AIS\\\"]\",\"id\":\"103\",\"name\":\"AIS\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":104,\"values\":{\"codes\":\"[\\\"新加坡第一通\\\"]\",\"id\":\"104\",\"name\":\"新加坡第一通\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":105,\"values\":{\"codes\":\"[\\\"So-Net\\\"]\",\"id\":\"105\",\"name\":\"So-Net\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":106,\"values\":{\"codes\":\"[\\\"Syscon\\\"]\",\"id\":\"106\",\"name\":\"Syscon\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":107,\"values\":{\"codes\":\"[\\\"DiGi-Telecommunication\\\"]\",\"id\":\"107\",\"name\":\"DiGi-Telecommunication\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":108,\"values\":{\"codes\":\"[\\\"澳门电讯\\\"]\",\"id\":\"108\",\"name\":\"澳门电讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":109,\"values\":{\"codes\":\"[\\\"菲律宾长途电话公司\\\"]\",\"id\":\"109\",\"name\":\"菲律宾长途电话公司\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":110,\"values\":{\"codes\":\"[\\\"互联网泰国\\\"]\",\"id\":\"110\",\"name\":\"互联网泰国\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":111,\"values\":{\"codes\":\"[\\\"Ani-Network\\\"]\",\"id\":\"111\",\"name\":\"Ani-Network\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":112,\"values\":{\"codes\":\"[\\\"UMobile\\\"]\",\"id\":\"112\",\"name\":\"UMobile\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":113,\"values\":{\"codes\":\"[\\\"Biglobe\\\"]\",\"id\":\"113\",\"name\":\"Biglobe\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":114,\"values\":{\"codes\":\"[\\\"重庆广电\\\"]\",\"id\":\"114\",\"name\":\"重庆广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":115,\"values\":{\"codes\":\"[\\\"SK电讯\\\"]\",\"id\":\"115\",\"name\":\"SK电讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":116,\"values\":{\"codes\":\"[\\\"Aircel\\\"]\",\"id\":\"116\",\"name\":\"Aircel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":117,\"values\":{\"codes\":\"[\\\"Quadrant\\\"]\",\"id\":\"117\",\"name\":\"Quadrant\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":118,\"values\":{\"codes\":\"[\\\"Elisa\\\"]\",\"id\":\"118\",\"name\":\"Elisa\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":119,\"values\":{\"codes\":\"[\\\"脸书\\\"]\",\"id\":\"119\",\"name\":\"脸书\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":120,\"values\":{\"codes\":\"[\\\"MegaFon\\\"]\",\"id\":\"120\",\"name\":\"MegaFon\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":121,\"values\":{\"codes\":\"[\\\"扎因\\\"]\",\"id\":\"121\",\"name\":\"扎因\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":122,\"values\":{\"codes\":\"[\\\"ASK4\\\"]\",\"id\":\"122\",\"name\":\"ASK4\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":123,\"values\":{\"codes\":\"[\\\"XTRA-Telecom\\\"]\",\"id\":\"123\",\"name\":\"XTRA-Telecom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":124,\"values\":{\"codes\":\"[\\\"天威\\\"]\",\"id\":\"124\",\"name\":\"天威\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":125,\"values\":{\"codes\":\"[\\\"和记电讯\\\"]\",\"id\":\"125\",\"name\":\"和记电讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":126,\"values\":{\"codes\":\"[\\\"铁通\\\"]\",\"id\":\"126\",\"name\":\"铁通\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":127,\"values\":{\"codes\":\"[\\\"科技网\\\"]\",\"id\":\"127\",\"name\":\"科技网\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":128,\"values\":{\"codes\":\"[\\\"德国电信\\\"]\",\"id\":\"128\",\"name\":\"德国电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":129,\"values\":{\"codes\":\"[\\\"GrameenPhone\\\"]\",\"id\":\"129\",\"name\":\"GrameenPhone\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":130,\"values\":{\"codes\":\"[\\\"巴基斯坦电信\\\"]\",\"id\":\"130\",\"name\":\"巴基斯坦电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":131,\"values\":{\"codes\":\"[\\\"Workonline\\\"]\",\"id\":\"131\",\"name\":\"Workonline\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":132,\"values\":{\"codes\":\"[\\\"Safaricom\\\"]\",\"id\":\"132\",\"name\":\"Safaricom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":133,\"values\":{\"codes\":\"[\\\"MTNL\\\"]\",\"id\":\"133\",\"name\":\"MTNL\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":134,\"values\":{\"codes\":\"[\\\"宁夏广电\\\"]\",\"id\":\"134\",\"name\":\"宁夏广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":135,\"values\":{\"codes\":\"[\\\"Webe-Digital\\\"]\",\"id\":\"135\",\"name\":\"Webe-Digital\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":136,\"values\":{\"codes\":\"[\\\"广电\\\"]\",\"id\":\"136\",\"name\":\"广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":137,\"values\":{\"codes\":\"[\\\"西安交通大学\\\"]\",\"id\":\"137\",\"name\":\"西安交通大学\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":138,\"values\":{\"codes\":\"[\\\"老挝电信\\\"]\",\"id\":\"138\",\"name\":\"老挝电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":139,\"values\":{\"codes\":\"[\\\"湖南广电\\\"]\",\"id\":\"139\",\"name\":\"湖南广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":140,\"values\":{\"codes\":\"[\\\"黑龙江广电\\\"]\",\"id\":\"140\",\"name\":\"黑龙江广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":141,\"values\":{\"codes\":\"[\\\"湖北广电\\\"]\",\"id\":\"141\",\"name\":\"湖北广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":142,\"values\":{\"codes\":\"[\\\"Unitel\\\"]\",\"id\":\"142\",\"name\":\"Unitel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":143,\"values\":{\"codes\":\"[\\\"You-Broadband\\\"]\",\"id\":\"143\",\"name\":\"You-Broadband\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":144,\"values\":{\"codes\":\"[\\\"Siti\\\"]\",\"id\":\"144\",\"name\":\"Siti\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":145,\"values\":{\"codes\":\"[\\\"Cogetel\\\"]\",\"id\":\"145\",\"name\":\"Cogetel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":146,\"values\":{\"codes\":\"[\\\"SMTeleMedia\\\"]\",\"id\":\"146\",\"name\":\"SMTeleMedia\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":147,\"values\":{\"codes\":\"[\\\"VNPL\\\"]\",\"id\":\"147\",\"name\":\"VNPL\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":148,\"values\":{\"codes\":\"[\\\"台湾固网\\\"]\",\"id\":\"148\",\"name\":\"台湾固网\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":149,\"values\":{\"codes\":\"[\\\"亚太电信\\\"]\",\"id\":\"149\",\"name\":\"亚太电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":150,\"values\":{\"codes\":\"[\\\"台湾大哥大\\\"]\",\"id\":\"150\",\"name\":\"台湾大哥大\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":151,\"values\":{\"codes\":\"[\\\"Intech\\\"]\",\"id\":\"151\",\"name\":\"Intech\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":152,\"values\":{\"codes\":\"[\\\"MegaPort\\\"]\",\"id\":\"152\",\"name\":\"MegaPort\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":153,\"values\":{\"codes\":\"[\\\"SpeedCast\\\"]\",\"id\":\"153\",\"name\":\"SpeedCast\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":154,\"values\":{\"codes\":\"[\\\"广东广电\\\"]\",\"id\":\"154\",\"name\":\"广东广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":155,\"values\":{\"codes\":\"[\\\"Banglalink\\\"]\",\"id\":\"155\",\"name\":\"Banglalink\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":156,\"values\":{\"codes\":\"[\\\"SINET\\\"]\",\"id\":\"156\",\"name\":\"SINET\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":157,\"values\":{\"codes\":\"[\\\"WiCAM\\\"]\",\"id\":\"157\",\"name\":\"WiCAM\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":158,\"values\":{\"codes\":\"[\\\"Mtel\\\"]\",\"id\":\"158\",\"name\":\"Mtel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":159,\"values\":{\"codes\":\"[\\\"华数\\\"]\",\"id\":\"159\",\"name\":\"华数\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":160,\"values\":{\"codes\":\"[\\\"上海驰联\\\"]\",\"id\":\"160\",\"name\":\"上海驰联\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":161,\"values\":{\"codes\":\"[\\\"OpenNet\\\"]\",\"id\":\"161\",\"name\":\"OpenNet\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":162,\"values\":{\"codes\":\"[\\\"Asianet\\\"]\",\"id\":\"162\",\"name\":\"Asianet\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":163,\"values\":{\"codes\":\"[\\\"老挝电信企业\\\"]\",\"id\":\"163\",\"name\":\"老挝电信企业\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":164,\"values\":{\"codes\":\"[\\\"Alliance\\\"]\",\"id\":\"164\",\"name\":\"Alliance\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":165,\"values\":{\"codes\":\"[\\\"广西广电\\\"]\",\"id\":\"165\",\"name\":\"广西广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":166,\"values\":{\"codes\":\"[\\\"江苏广电\\\"]\",\"id\":\"166\",\"name\":\"江苏广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":167,\"values\":{\"codes\":\"[\\\"世纪互联\\\"]\",\"id\":\"167\",\"name\":\"世纪互联\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":168,\"values\":{\"codes\":\"[\\\"SkyCable\\\"]\",\"id\":\"168\",\"name\":\"SkyCable\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":169,\"values\":{\"codes\":\"[\\\"SmileServ\\\"]\",\"id\":\"169\",\"name\":\"SmileServ\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":170,\"values\":{\"codes\":\"[\\\"SmarTone\\\"]\",\"id\":\"170\",\"name\":\"SmarTone\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":171,\"values\":{\"codes\":\"[\\\"BBIX\\\"]\",\"id\":\"171\",\"name\":\"BBIX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":172,\"values\":{\"codes\":\"[\\\"FastNet\\\"]\",\"id\":\"172\",\"name\":\"FastNet\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":173,\"values\":{\"codes\":\"[\\\"百度\\\"]\",\"id\":\"173\",\"name\":\"百度\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":174,\"values\":{\"codes\":\"[\\\"Railtel\\\"]\",\"id\":\"174\",\"name\":\"Railtel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":175,\"values\":{\"codes\":\"[\\\"内蒙古广电\\\"]\",\"id\":\"175\",\"name\":\"内蒙古广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":176,\"values\":{\"codes\":\"[\\\"吉视传媒\\\"]\",\"id\":\"176\",\"name\":\"吉视传媒\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":177,\"values\":{\"codes\":\"[\\\"Excitel\\\"]\",\"id\":\"177\",\"name\":\"Excitel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":178,\"values\":{\"codes\":\"[\\\"MyRepublic\\\"]\",\"id\":\"178\",\"name\":\"MyRepublic\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":179,\"values\":{\"codes\":\"[\\\"MobiFone\\\"]\",\"id\":\"179\",\"name\":\"MobiFone\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":180,\"values\":{\"codes\":\"[\\\"Den-Digital\\\"]\",\"id\":\"180\",\"name\":\"Den-Digital\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":181,\"values\":{\"codes\":\"[\\\"网上网\\\"]\",\"id\":\"181\",\"name\":\"网上网\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":182,\"values\":{\"codes\":\"[\\\"Biznet\\\"]\",\"id\":\"182\",\"name\":\"Biznet\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":183,\"values\":{\"codes\":\"[\\\"Netplus\\\"]\",\"id\":\"183\",\"name\":\"Netplus\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":184,\"values\":{\"codes\":\"[\\\"网宿\\\"]\",\"id\":\"184\",\"name\":\"网宿\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":185,\"values\":{\"codes\":\"[\\\"Telecom-Cambodia\\\"]\",\"id\":\"185\",\"name\":\"Telecom-Cambodia\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":186,\"values\":{\"codes\":\"[\\\"CIX\\\"]\",\"id\":\"186\",\"name\":\"CIX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":187,\"values\":{\"codes\":\"[\\\"加拿大贝尔\\\"]\",\"id\":\"187\",\"name\":\"加拿大贝尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":188,\"values\":{\"codes\":\"[\\\"AIMS\\\"]\",\"id\":\"188\",\"name\":\"AIMS\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":189,\"values\":{\"codes\":\"[\\\"SKBB\\\"]\",\"id\":\"189\",\"name\":\"SKBB\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":190,\"values\":{\"codes\":\"[\\\"Nift\\\"]\",\"id\":\"190\",\"name\":\"Nift\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":191,\"values\":{\"codes\":\"[\\\"有线通\\\"]\",\"id\":\"191\",\"name\":\"有线通\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":192,\"values\":{\"codes\":\"[\\\"香港新世界\\\"]\",\"id\":\"192\",\"name\":\"香港新世界\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":193,\"values\":{\"codes\":\"[\\\"华数传媒\\\"]\",\"id\":\"193\",\"name\":\"华数传媒\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":194,\"values\":{\"codes\":\"[\\\"3BB\\\"]\",\"id\":\"194\",\"name\":\"3BB\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":195,\"values\":{\"codes\":\"[\\\"辽宁广电\\\"]\",\"id\":\"195\",\"name\":\"辽宁广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":196,\"values\":{\"codes\":\"[\\\"河南广电\\\"]\",\"id\":\"196\",\"name\":\"河南广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":197,\"values\":{\"codes\":\"[\\\"陕西广电\\\"]\",\"id\":\"197\",\"name\":\"陕西广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":198,\"values\":{\"codes\":\"[\\\"新疆广电\\\"]\",\"id\":\"198\",\"name\":\"新疆广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":199,\"values\":{\"codes\":\"[\\\"山东广电\\\"]\",\"id\":\"199\",\"name\":\"山东广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":200,\"values\":{\"codes\":\"[\\\"四川广电\\\"]\",\"id\":\"200\",\"name\":\"四川广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":201,\"values\":{\"codes\":\"[\\\"文莱电信\\\"]\",\"id\":\"201\",\"name\":\"文莱电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":202,\"values\":{\"codes\":\"[\\\"香港有线\\\"]\",\"id\":\"202\",\"name\":\"香港有线\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":203,\"values\":{\"codes\":\"[\\\"天驰网络\\\"]\",\"id\":\"203\",\"name\":\"天驰网络\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":204,\"values\":{\"codes\":\"[\\\"湖南巨亚\\\"]\",\"id\":\"204\",\"name\":\"湖南巨亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":205,\"values\":{\"codes\":\"[\\\"MSK-IX\\\"]\",\"id\":\"205\",\"name\":\"MSK-IX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":206,\"values\":{\"codes\":\"[\\\"法国电信\\\"]\",\"id\":\"206\",\"name\":\"法国电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":207,\"values\":{\"codes\":\"[\\\"缅甸电信\\\"]\",\"id\":\"207\",\"name\":\"缅甸电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":208,\"values\":{\"codes\":\"[\\\"星通讯\\\"]\",\"id\":\"208\",\"name\":\"星通讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":209,\"values\":{\"codes\":\"[\\\"Netnod\\\"]\",\"id\":\"209\",\"name\":\"Netnod\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":210,\"values\":{\"codes\":\"[\\\"Masmovil\\\"]\",\"id\":\"210\",\"name\":\"Masmovil\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":211,\"values\":{\"codes\":\"[\\\"AMS-IX\\\"]\",\"id\":\"211\",\"name\":\"AMS-IX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":212,\"values\":{\"codes\":\"[\\\"Telefonica-O2\\\"]\",\"id\":\"212\",\"name\":\"Telefonica-O2\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":213,\"values\":{\"codes\":\"[\\\"Asiacell\\\"]\",\"id\":\"213\",\"name\":\"Asiacell\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":214,\"values\":{\"codes\":\"[\\\"布伊格电信\\\"]\",\"id\":\"214\",\"name\":\"布伊格电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":215,\"values\":{\"codes\":\"[\\\"Vivo\\\"]\",\"id\":\"215\",\"name\":\"Vivo\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":216,\"values\":{\"codes\":\"[\\\"XL\\\"]\",\"id\":\"216\",\"name\":\"XL\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":217,\"values\":{\"codes\":\"[\\\"EE-Mobile\\\"]\",\"id\":\"217\",\"name\":\"EE-Mobile\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":218,\"values\":{\"codes\":\"[\\\"Tesco\\\"]\",\"id\":\"218\",\"name\":\"Tesco\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":219,\"values\":{\"codes\":\"[\\\"Netnam\\\"]\",\"id\":\"219\",\"name\":\"Netnam\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":220,\"values\":{\"codes\":\"[\\\"河北广电\\\"]\",\"id\":\"220\",\"name\":\"河北广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":221,\"values\":{\"codes\":\"[\\\"JPIX\\\"]\",\"id\":\"221\",\"name\":\"JPIX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":222,\"values\":{\"codes\":\"[\\\"Celcom\\\"]\",\"id\":\"222\",\"name\":\"Celcom\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":223,\"values\":{\"codes\":\"[\\\"印尼金光\\\"]\",\"id\":\"223\",\"name\":\"印尼金光\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":224,\"values\":{\"codes\":\"[\\\"和记电讯印尼\\\"]\",\"id\":\"224\",\"name\":\"和记电讯印尼\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":225,\"values\":{\"codes\":\"[\\\"Indosat\\\"]\",\"id\":\"225\",\"name\":\"Indosat\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":226,\"values\":{\"codes\":\"[\\\"Excell\\\"]\",\"id\":\"226\",\"name\":\"Excell\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":227,\"values\":{\"codes\":\"[\\\"StackPath\\\"]\",\"id\":\"227\",\"name\":\"StackPath\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":228,\"values\":{\"codes\":\"[\\\"贵州广电\\\"]\",\"id\":\"228\",\"name\":\"贵州广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":229,\"values\":{\"codes\":\"[\\\"Camintel\\\"]\",\"id\":\"229\",\"name\":\"Camintel\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":230,\"values\":{\"codes\":\"[\\\"Vnetwork\\\"]\",\"id\":\"230\",\"name\":\"Vnetwork\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":231,\"values\":{\"codes\":\"[\\\"湖南有线\\\"]\",\"id\":\"231\",\"name\":\"湖南有线\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":232,\"values\":{\"codes\":\"[\\\"山东乐享广电\\\"]\",\"id\":\"232\",\"name\":\"山东乐享广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":233,\"values\":{\"codes\":\"[\\\"BroadWay\\\"]\",\"id\":\"233\",\"name\":\"BroadWay\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":234,\"values\":{\"codes\":\"[\\\"First-Media\\\"]\",\"id\":\"234\",\"name\":\"First-Media\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":235,\"values\":{\"codes\":\"[\\\"西贡电信\\\"]\",\"id\":\"235\",\"name\":\"西贡电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":236,\"values\":{\"codes\":\"[\\\"APSFL\\\"]\",\"id\":\"236\",\"name\":\"APSFL\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":237,\"values\":{\"codes\":\"[\\\"Teletalk\\\"]\",\"id\":\"237\",\"name\":\"Teletalk\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":238,\"values\":{\"codes\":\"[\\\"越南电信\\\"]\",\"id\":\"238\",\"name\":\"越南电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":239,\"values\":{\"codes\":\"[\\\"2Degrees\\\"]\",\"id\":\"239\",\"name\":\"2Degrees\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":240,\"values\":{\"codes\":\"[\\\"湄公网\\\"]\",\"id\":\"240\",\"name\":\"湄公网\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":241,\"values\":{\"codes\":\"[\\\"大连理工大学\\\"]\",\"id\":\"241\",\"name\":\"大连理工大学\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":242,\"values\":{\"codes\":\"[\\\"山东青岛广电\\\"]\",\"id\":\"242\",\"name\":\"山东青岛广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":243,\"values\":{\"codes\":\"[\\\"浙江华数\\\"]\",\"id\":\"243\",\"name\":\"浙江华数\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":244,\"values\":{\"codes\":\"[\\\"Spark-New-Zealand\\\"]\",\"id\":\"244\",\"name\":\"Spark-New-Zealand\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":245,\"values\":{\"codes\":\"[\\\"珠江宽频\\\"]\",\"id\":\"245\",\"name\":\"珠江宽频\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":246,\"values\":{\"codes\":\"[\\\"海南广电\\\"]\",\"id\":\"246\",\"name\":\"海南广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":247,\"values\":{\"codes\":\"[\\\"香港流动通讯\\\"]\",\"id\":\"247\",\"name\":\"香港流动通讯\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":248,\"values\":{\"codes\":\"[\\\"墨西哥电信\\\"]\",\"id\":\"248\",\"name\":\"墨西哥电信\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":249,\"values\":{\"codes\":\"[\\\"柬埔寨信威\\\"]\",\"id\":\"249\",\"name\":\"柬埔寨信威\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":250,\"values\":{\"codes\":\"[\\\"MIX\\\"]\",\"id\":\"250\",\"name\":\"MIX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":251,\"values\":{\"codes\":\"[\\\"Linx\\\"]\",\"id\":\"251\",\"name\":\"Linx\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":252,\"values\":{\"codes\":\"[\\\"TPIX\\\"]\",\"id\":\"252\",\"name\":\"TPIX\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":253,\"values\":{\"codes\":\"[\\\"Movistar\\\"]\",\"id\":\"253\",\"name\":\"Movistar\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":254,\"values\":{\"codes\":\"[\\\"墨西哥美洲移动\\\"]\",\"id\":\"254\",\"name\":\"墨西哥美洲移动\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":255,\"values\":{\"codes\":\"[\\\"互联优势\\\"]\",\"id\":\"255\",\"name\":\"互联优势\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":256,\"values\":{\"codes\":\"[\\\"上海教委\\\"]\",\"id\":\"256\",\"name\":\"上海教委\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":257,\"values\":{\"codes\":\"[\\\"福建广电\\\"]\",\"id\":\"257\",\"name\":\"福建广电\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":258,\"values\":{\"codes\":\"[\\\"内网IP\\\"]\",\"id\":\"258\",\"name\":\"内网IP\",\"state\":\"1\"},\"uniqueFields\":[\"name\"],\"exceptFields\":[\"customName\",\"customCodes\"]}]},{\"name\":\"edgeRegionProvinces\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeRegionProvinces` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `countryId` int(11) unsigned DEFAULT '0' COMMENT '国家ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `customName` varchar(255) DEFAULT NULL COMMENT '自定义名称',\\n `customCodes` json DEFAULT NULL COMMENT '自定义代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `dataId` varchar(255) DEFAULT NULL COMMENT '原始数据ID',\\n PRIMARY KEY (`id`),\\n KEY `countryId` (`countryId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-省份'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"countryId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '国家ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"customName\",\"definition\":\"varchar(255) COMMENT '自定义名称'\"},{\"name\":\"customCodes\",\"definition\":\"json COMMENT '自定义代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"dataId\",\"definition\":\"varchar(255) COMMENT '原始数据ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"countryId\",\"definition\":\"KEY `countryId` (`countryId`) USING BTREE\"}],\"records\":[{\"id\":1,\"values\":{\"codes\":\"[\\\"北京市\\\", \\\"北京\\\"]\",\"countryId\":\"1\",\"dataId\":\"214\",\"id\":\"1\",\"name\":\"北京市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2,\"values\":{\"codes\":\"[\\\"天津市\\\", \\\"天津\\\"]\",\"countryId\":\"1\",\"dataId\":\"234\",\"id\":\"2\",\"name\":\"天津市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":3,\"values\":{\"codes\":\"[\\\"河北省\\\", \\\"河北\\\"]\",\"countryId\":\"1\",\"dataId\":\"254\",\"id\":\"3\",\"name\":\"河北省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":4,\"values\":{\"codes\":\"[\\\"山西省\\\", \\\"山西\\\"]\",\"countryId\":\"1\",\"dataId\":\"433\",\"id\":\"4\",\"name\":\"山西省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":5,\"values\":{\"codes\":\"[\\\"内蒙古自治区\\\", \\\"内蒙古\\\"]\",\"countryId\":\"1\",\"dataId\":\"559\",\"id\":\"5\",\"name\":\"内蒙古自治区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":6,\"values\":{\"codes\":\"[\\\"辽宁省\\\", \\\"辽宁\\\"]\",\"countryId\":\"1\",\"dataId\":\"673\",\"id\":\"6\",\"name\":\"辽宁省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":7,\"values\":{\"codes\":\"[\\\"吉林省\\\", \\\"吉林\\\"]\",\"countryId\":\"1\",\"dataId\":\"786\",\"id\":\"7\",\"name\":\"吉林省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":8,\"values\":{\"codes\":\"[\\\"黑龙江省\\\", \\\"黑龙江\\\"]\",\"countryId\":\"1\",\"dataId\":\"853\",\"id\":\"8\",\"name\":\"黑龙江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":9,\"values\":{\"codes\":\"[\\\"上海市\\\", \\\"上海\\\"]\",\"countryId\":\"1\",\"dataId\":\"994\",\"id\":\"9\",\"name\":\"上海市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":10,\"values\":{\"codes\":\"[\\\"江苏省\\\", \\\"江苏\\\"]\",\"countryId\":\"1\",\"dataId\":\"1014\",\"id\":\"10\",\"name\":\"江苏省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":11,\"values\":{\"codes\":\"[\\\"浙江省\\\", \\\"浙江\\\"]\",\"countryId\":\"1\",\"dataId\":\"1131\",\"id\":\"11\",\"name\":\"浙江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":12,\"values\":{\"codes\":\"[\\\"安徽省\\\", \\\"安徽\\\"]\",\"countryId\":\"1\",\"dataId\":\"1232\",\"id\":\"12\",\"name\":\"安徽省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":13,\"values\":{\"codes\":\"[\\\"福建省\\\", \\\"福建\\\"]\",\"countryId\":\"1\",\"dataId\":\"1353\",\"id\":\"13\",\"name\":\"福建省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":14,\"values\":{\"codes\":\"[\\\"江西省\\\", \\\"江西\\\"]\",\"countryId\":\"1\",\"dataId\":\"1447\",\"id\":\"14\",\"name\":\"江西省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":15,\"values\":{\"codes\":\"[\\\"山东省\\\", \\\"山东\\\"]\",\"countryId\":\"1\",\"dataId\":\"1557\",\"id\":\"15\",\"name\":\"山东省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":16,\"values\":{\"codes\":\"[\\\"河南省\\\", \\\"河南\\\"]\",\"countryId\":\"1\",\"dataId\":\"1712\",\"id\":\"16\",\"name\":\"河南省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":17,\"values\":{\"codes\":\"[\\\"湖北省\\\", \\\"湖北\\\"]\",\"countryId\":\"1\",\"dataId\":\"1886\",\"id\":\"17\",\"name\":\"湖北省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":18,\"values\":{\"codes\":\"[\\\"湖南省\\\", \\\"湖南\\\"]\",\"countryId\":\"1\",\"dataId\":\"2002\",\"id\":\"18\",\"name\":\"湖南省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":19,\"values\":{\"codes\":\"[\\\"广东省\\\", \\\"广东\\\"]\",\"countryId\":\"1\",\"dataId\":\"2139\",\"id\":\"19\",\"name\":\"广东省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":20,\"values\":{\"codes\":\"[\\\"广西壮族自治区\\\", \\\"广西\\\", \\\"广西省\\\"]\",\"countryId\":\"1\",\"dataId\":\"2279\",\"id\":\"20\",\"name\":\"广西壮族自治区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":21,\"values\":{\"codes\":\"[\\\"海南省\\\", \\\"海南\\\"]\",\"countryId\":\"1\",\"dataId\":\"2403\",\"id\":\"21\",\"name\":\"海南省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":22,\"values\":{\"codes\":\"[\\\"重庆市\\\", \\\"重庆\\\"]\",\"countryId\":\"1\",\"dataId\":\"2429\",\"id\":\"22\",\"name\":\"重庆市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":23,\"values\":{\"codes\":\"[\\\"四川省\\\", \\\"四川\\\"]\",\"countryId\":\"1\",\"dataId\":\"2469\",\"id\":\"23\",\"name\":\"四川省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":24,\"values\":{\"codes\":\"[\\\"贵州省\\\", \\\"贵州\\\"]\",\"countryId\":\"1\",\"dataId\":\"2669\",\"id\":\"24\",\"name\":\"贵州省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":25,\"values\":{\"codes\":\"[\\\"云南省\\\", \\\"云南\\\"]\",\"countryId\":\"1\",\"dataId\":\"2766\",\"id\":\"25\",\"name\":\"云南省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":26,\"values\":{\"codes\":\"[\\\"西藏自治区\\\", \\\"西藏\\\"]\",\"countryId\":\"1\",\"dataId\":\"2912\",\"id\":\"26\",\"name\":\"西藏自治区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":27,\"values\":{\"codes\":\"[\\\"陕西省\\\", \\\"陕西\\\"]\",\"countryId\":\"1\",\"dataId\":\"2993\",\"id\":\"27\",\"name\":\"陕西省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":28,\"values\":{\"codes\":\"[\\\"甘肃省\\\", \\\"甘肃\\\"]\",\"countryId\":\"1\",\"dataId\":\"3109\",\"id\":\"28\",\"name\":\"甘肃省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":29,\"values\":{\"codes\":\"[\\\"青海省\\\", \\\"青海\\\"]\",\"countryId\":\"1\",\"dataId\":\"3209\",\"id\":\"29\",\"name\":\"青海省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":30,\"values\":{\"codes\":\"[\\\"宁夏回族自治区\\\", \\\"宁夏\\\", \\\"宁夏省\\\"]\",\"countryId\":\"1\",\"dataId\":\"3260\",\"id\":\"30\",\"name\":\"宁夏回族自治区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":31,\"values\":{\"codes\":\"[\\\"新疆维吾尔自治区\\\", \\\"新疆\\\"]\",\"countryId\":\"1\",\"dataId\":\"3287\",\"id\":\"31\",\"name\":\"新疆维吾尔自治区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":32,\"values\":{\"codes\":\"[\\\"香港特别行政区\\\", \\\"香港\\\"]\",\"countryId\":\"1\",\"dataId\":\"3399\",\"id\":\"32\",\"name\":\"香港特别行政区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":33,\"values\":{\"codes\":\"[\\\"澳门特别行政区\\\", \\\"澳门\\\"]\",\"countryId\":\"1\",\"dataId\":\"3401\",\"id\":\"33\",\"name\":\"澳门特别行政区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":34,\"values\":{\"codes\":\"[\\\"台湾省\\\", \\\"台湾\\\"]\",\"countryId\":\"1\",\"dataId\":\"3403\",\"id\":\"34\",\"name\":\"台湾省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":35,\"values\":{\"codes\":\"[\\\"维多利亚\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"35\",\"name\":\"维多利亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":36,\"values\":{\"codes\":\"[\\\"广岛县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"36\",\"name\":\"广岛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":37,\"values\":{\"codes\":\"[\\\"清莱府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"37\",\"name\":\"清莱府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":38,\"values\":{\"codes\":\"[\\\"华盛顿\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"38\",\"name\":\"华盛顿\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":39,\"values\":{\"codes\":\"[\\\"卡纳塔克\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"39\",\"name\":\"卡纳塔克\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":40,\"values\":{\"codes\":\"[\\\"雪兰莪\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"40\",\"name\":\"雪兰莪\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":41,\"values\":{\"codes\":\"[\\\"首尔\\\"]\",\"countryId\":\"4\",\"dataId\":\"\",\"id\":\"41\",\"name\":\"首尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":42,\"values\":{\"codes\":\"[\\\"马尼拉\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"42\",\"name\":\"马尼拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":43,\"values\":{\"codes\":\"[\\\"海阳省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"43\",\"name\":\"海阳省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":44,\"values\":{\"codes\":\"[\\\"Loire-Atlantique\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"44\",\"name\":\"Loire-Atlantique\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":45,\"values\":{\"codes\":\"[\\\"华沙\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"45\",\"name\":\"华沙\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":46,\"values\":{\"codes\":\"[\\\"布拉格\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"46\",\"name\":\"布拉格\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":47,\"values\":{\"codes\":\"[\\\"法兰克福\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"47\",\"name\":\"法兰克福\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":48,\"values\":{\"codes\":\"[\\\"阿姆斯特丹\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"48\",\"name\":\"阿姆斯特丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":49,\"values\":{\"codes\":\"[\\\"马德里\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"49\",\"name\":\"马德里\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":50,\"values\":{\"codes\":\"[\\\"Zurich\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"50\",\"name\":\"Zurich\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":51,\"values\":{\"codes\":\"[\\\"伦敦\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"51\",\"name\":\"伦敦\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":52,\"values\":{\"codes\":\"[\\\"米兰\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"52\",\"name\":\"米兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":53,\"values\":{\"codes\":\"[\\\"Dublin\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"53\",\"name\":\"Dublin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":54,\"values\":{\"codes\":\"[\\\"哥本哈根\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"54\",\"name\":\"哥本哈根\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":55,\"values\":{\"codes\":\"[\\\"Lisboa\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"55\",\"name\":\"Lisboa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":56,\"values\":{\"codes\":\"[\\\"斯德哥尔摩\\\"]\",\"countryId\":\"50\",\"dataId\":\"\",\"id\":\"56\",\"name\":\"斯德哥尔摩\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":57,\"values\":{\"codes\":\"[\\\"莫斯科\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"57\",\"name\":\"莫斯科\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":58,\"values\":{\"codes\":\"[\\\"Centre\\\"]\",\"countryId\":\"222\",\"dataId\":\"\",\"id\":\"58\",\"name\":\"Centre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":59,\"values\":{\"codes\":\"[\\\"约翰内斯堡\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"59\",\"name\":\"约翰内斯堡\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":60,\"values\":{\"codes\":\"[\\\"Uusimaa\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"60\",\"name\":\"Uusimaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":61,\"values\":{\"codes\":\"[\\\"圣保罗\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"61\",\"name\":\"圣保罗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":62,\"values\":{\"codes\":\"[\\\"Wien\\\"]\",\"countryId\":\"66\",\"dataId\":\"\",\"id\":\"62\",\"name\":\"Wien\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":63,\"values\":{\"codes\":\"[\\\"布加勒斯特\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"63\",\"name\":\"布加勒斯特\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":64,\"values\":{\"codes\":\"[\\\"Luxembourg\\\"]\",\"countryId\":\"73\",\"dataId\":\"\",\"id\":\"64\",\"name\":\"Luxembourg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":65,\"values\":{\"codes\":\"[\\\"Buenos-Aires\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"65\",\"name\":\"Buenos-Aires\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":66,\"values\":{\"codes\":\"[\\\"Kampala\\\"]\",\"countryId\":\"106\",\"dataId\":\"\",\"id\":\"66\",\"name\":\"Kampala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":67,\"values\":{\"codes\":\"[\\\"Dar-es-Salaam\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"67\",\"name\":\"Dar-es-Salaam\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":68,\"values\":{\"codes\":\"[\\\"Bujumbura-Mairie\\\"]\",\"countryId\":\"108\",\"dataId\":\"\",\"id\":\"68\",\"name\":\"Bujumbura-Mairie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":69,\"values\":{\"codes\":\"[\\\"Attiki\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"69\",\"name\":\"Attiki\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":70,\"values\":{\"codes\":\"[\\\"Sofia\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"70\",\"name\":\"Sofia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":71,\"values\":{\"codes\":\"[\\\"迪拜\\\"]\",\"countryId\":\"41\",\"dataId\":\"\",\"id\":\"71\",\"name\":\"迪拜\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":72,\"values\":{\"codes\":\"[\\\"不列颠哥伦比亚\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"72\",\"name\":\"不列颠哥伦比亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":73,\"values\":{\"codes\":\"[\\\"Bursa\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"73\",\"name\":\"Bursa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":74,\"values\":{\"codes\":\"[\\\"Finnmark\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"74\",\"name\":\"Finnmark\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":75,\"values\":{\"codes\":\"[\\\"Nyiregyhaza\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"75\",\"name\":\"Nyiregyhaza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":76,\"values\":{\"codes\":\"[\\\"Almaty\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"76\",\"name\":\"Almaty\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":77,\"values\":{\"codes\":\"[\\\"Portland\\\"]\",\"countryId\":\"178\",\"dataId\":\"\",\"id\":\"77\",\"name\":\"Portland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":78,\"values\":{\"codes\":\"[\\\"Panama\\\"]\",\"countryId\":\"175\",\"dataId\":\"\",\"id\":\"78\",\"name\":\"Panama\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":79,\"values\":{\"codes\":\"[\\\"Mexico\\\"]\",\"countryId\":\"167\",\"dataId\":\"\",\"id\":\"79\",\"name\":\"Mexico\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":80,\"values\":{\"codes\":\"[\\\"Gaza\\\"]\",\"countryId\":\"36\",\"dataId\":\"\",\"id\":\"80\",\"name\":\"Gaza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":81,\"values\":{\"codes\":\"[\\\"麦加地区\\\"]\",\"countryId\":\"37\",\"dataId\":\"\",\"id\":\"81\",\"name\":\"麦加地区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":82,\"values\":{\"codes\":\"[\\\"金边\\\"]\",\"countryId\":\"9\",\"dataId\":\"\",\"id\":\"82\",\"name\":\"金边\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":83,\"values\":{\"codes\":\"[\\\"Riga\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"83\",\"name\":\"Riga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":84,\"values\":{\"codes\":\"[\\\"Ida-Virumaa\\\"]\",\"countryId\":\"54\",\"dataId\":\"\",\"id\":\"84\",\"name\":\"Ida-Virumaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":85,\"values\":{\"codes\":\"[\\\"Vilniaus\\\"]\",\"countryId\":\"56\",\"dataId\":\"\",\"id\":\"85\",\"name\":\"Vilniaus\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":86,\"values\":{\"codes\":\"[\\\"Antwerpen\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"86\",\"name\":\"Antwerpen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":87,\"values\":{\"codes\":\"[\\\"Toshkent\\\"]\",\"countryId\":\"27\",\"dataId\":\"\",\"id\":\"87\",\"name\":\"Toshkent\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":88,\"values\":{\"codes\":\"[\\\"Tel-Aviv\\\"]\",\"countryId\":\"35\",\"dataId\":\"\",\"id\":\"88\",\"name\":\"Tel-Aviv\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":89,\"values\":{\"codes\":\"[\\\"大雅加达\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"89\",\"name\":\"大雅加达\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":90,\"values\":{\"codes\":\"[\\\"Thimphu\\\"]\",\"countryId\":\"18\",\"dataId\":\"\",\"id\":\"90\",\"name\":\"Thimphu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":91,\"values\":{\"codes\":\"[\\\"Auckland\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"91\",\"name\":\"Auckland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":92,\"values\":{\"codes\":\"[\\\"Maseru\\\"]\",\"countryId\":\"135\",\"dataId\":\"\",\"id\":\"92\",\"name\":\"Maseru\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":93,\"values\":{\"codes\":\"[\\\"Cundinamarca\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"93\",\"name\":\"Cundinamarca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":94,\"values\":{\"codes\":\"[\\\"Valparaiso\\\"]\",\"countryId\":\"210\",\"dataId\":\"\",\"id\":\"94\",\"name\":\"Valparaiso\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":95,\"values\":{\"codes\":\"[\\\"Lima\\\"]\",\"countryId\":\"207\",\"dataId\":\"\",\"id\":\"95\",\"name\":\"Lima\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":96,\"values\":{\"codes\":\"[\\\"Bishkek\\\"]\",\"countryId\":\"25\",\"dataId\":\"\",\"id\":\"96\",\"name\":\"Bishkek\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":97,\"values\":{\"codes\":\"[\\\"Lagos\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"97\",\"name\":\"Lagos\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":98,\"values\":{\"codes\":\"[\\\"Central\\\"]\",\"countryId\":\"153\",\"dataId\":\"\",\"id\":\"98\",\"name\":\"Central\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":99,\"values\":{\"codes\":\"[\\\"多哈\\\"]\",\"countryId\":\"39\",\"dataId\":\"\",\"id\":\"99\",\"name\":\"多哈\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":100,\"values\":{\"codes\":\"[\\\"Minskaya\\\"]\",\"countryId\":\"57\",\"dataId\":\"\",\"id\":\"100\",\"name\":\"Minskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":101,\"values\":{\"codes\":\"[\\\"San-Marino\\\"]\",\"countryId\":\"87\",\"dataId\":\"\",\"id\":\"101\",\"name\":\"San-Marino\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":102,\"values\":{\"codes\":\"[\\\"Dhaka\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"102\",\"name\":\"Dhaka\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":103,\"values\":{\"codes\":\"[\\\"Gagra\\\"]\",\"countryId\":\"44\",\"dataId\":\"\",\"id\":\"103\",\"name\":\"Gagra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":104,\"values\":{\"codes\":\"[\\\"Hamrun\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"104\",\"name\":\"Hamrun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":105,\"values\":{\"codes\":\"[\\\"Kayin\\\"]\",\"countryId\":\"10\",\"dataId\":\"\",\"id\":\"105\",\"name\":\"Kayin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":106,\"values\":{\"codes\":\"[\\\"Islamabad\\\"]\",\"countryId\":\"21\",\"dataId\":\"\",\"id\":\"106\",\"name\":\"Islamabad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":107,\"values\":{\"codes\":\"[\\\"Amman\\\"]\",\"countryId\":\"33\",\"dataId\":\"\",\"id\":\"107\",\"name\":\"Amman\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":108,\"values\":{\"codes\":\"[\\\"Baghdad\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"108\",\"name\":\"Baghdad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":109,\"values\":{\"codes\":\"[\\\"Grenadines\\\"]\",\"countryId\":\"185\",\"dataId\":\"\",\"id\":\"109\",\"name\":\"Grenadines\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":110,\"values\":{\"codes\":\"[\\\"Barbuda\\\"]\",\"countryId\":\"181\",\"dataId\":\"\",\"id\":\"110\",\"name\":\"Barbuda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":111,\"values\":{\"codes\":\"[\\\"San-Jose\\\"]\",\"countryId\":\"174\",\"dataId\":\"\",\"id\":\"111\",\"name\":\"San-Jose\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":112,\"values\":{\"codes\":\"[\\\"Nairobi\\\"]\",\"countryId\":\"104\",\"dataId\":\"\",\"id\":\"112\",\"name\":\"Nairobi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":113,\"values\":{\"codes\":\"[\\\"Toamasina\\\"]\",\"countryId\":\"136\",\"dataId\":\"\",\"id\":\"113\",\"name\":\"Toamasina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":114,\"values\":{\"codes\":\"[\\\"Bas-Sassandra\\\"]\",\"countryId\":\"120\",\"dataId\":\"\",\"id\":\"114\",\"name\":\"Bas-Sassandra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":115,\"values\":{\"codes\":\"[\\\"Lusaka\\\"]\",\"countryId\":\"126\",\"dataId\":\"\",\"id\":\"115\",\"name\":\"Lusaka\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":116,\"values\":{\"codes\":\"[\\\"Lilongwe\\\"]\",\"countryId\":\"129\",\"dataId\":\"\",\"id\":\"116\",\"name\":\"Lilongwe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":117,\"values\":{\"codes\":\"[\\\"Al-Qahirah\\\"]\",\"countryId\":\"92\",\"dataId\":\"\",\"id\":\"117\",\"name\":\"Al-Qahirah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":118,\"values\":{\"codes\":\"[\\\"Kinshasa\\\"]\",\"countryId\":\"230\",\"dataId\":\"\",\"id\":\"118\",\"name\":\"Kinshasa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":119,\"values\":{\"codes\":\"[\\\"Bioko-Norte\\\"]\",\"countryId\":\"228\",\"dataId\":\"\",\"id\":\"119\",\"name\":\"Bioko-Norte\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":120,\"values\":{\"codes\":\"[\\\"Maputo\\\"]\",\"countryId\":\"130\",\"dataId\":\"\",\"id\":\"120\",\"name\":\"Maputo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":121,\"values\":{\"codes\":\"[\\\"Djibouti\\\"]\",\"countryId\":\"103\",\"dataId\":\"\",\"id\":\"121\",\"name\":\"Djibouti\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":122,\"values\":{\"codes\":\"[\\\"Safi\\\"]\",\"countryId\":\"97\",\"dataId\":\"\",\"id\":\"122\",\"name\":\"Safi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":123,\"values\":{\"codes\":\"[\\\"Oran\\\"]\",\"countryId\":\"96\",\"dataId\":\"\",\"id\":\"123\",\"name\":\"Oran\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":124,\"values\":{\"codes\":\"[\\\"Niamey\\\"]\",\"countryId\":\"124\",\"dataId\":\"\",\"id\":\"124\",\"name\":\"Niamey\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":125,\"values\":{\"codes\":\"[\\\"Greater-Accra\\\"]\",\"countryId\":\"121\",\"dataId\":\"\",\"id\":\"125\",\"name\":\"Greater-Accra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":126,\"values\":{\"codes\":\"[\\\"Beja\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"126\",\"name\":\"Beja\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":127,\"values\":{\"codes\":\"[\\\"乌兰巴托\\\"]\",\"countryId\":\"2\",\"dataId\":\"\",\"id\":\"127\",\"name\":\"乌兰巴托\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":128,\"values\":{\"codes\":\"[\\\"Kaafu\\\"]\",\"countryId\":\"23\",\"dataId\":\"\",\"id\":\"128\",\"name\":\"Kaafu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":129,\"values\":{\"codes\":\"[\\\"Gampaha\\\"]\",\"countryId\":\"22\",\"dataId\":\"\",\"id\":\"129\",\"name\":\"Gampaha\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":130,\"values\":{\"codes\":\"[\\\"Dili\\\"]\",\"countryId\":\"16\",\"dataId\":\"\",\"id\":\"130\",\"name\":\"Dili\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":131,\"values\":{\"codes\":\"[\\\"Belize\\\"]\",\"countryId\":\"170\",\"dataId\":\"\",\"id\":\"131\",\"name\":\"Belize\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":132,\"values\":{\"codes\":\"[\\\"Manabi\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"132\",\"name\":\"Manabi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":133,\"values\":{\"codes\":\"[\\\"Veles\\\"]\",\"countryId\":\"79\",\"dataId\":\"\",\"id\":\"133\",\"name\":\"Veles\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":134,\"values\":{\"codes\":\"[\\\"Guatemala\\\"]\",\"countryId\":\"169\",\"dataId\":\"\",\"id\":\"134\",\"name\":\"Guatemala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":135,\"values\":{\"codes\":\"[\\\"Miranda\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"135\",\"name\":\"Miranda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":136,\"values\":{\"codes\":\"[\\\"Santo-Domingo\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"136\",\"name\":\"Santo-Domingo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":137,\"values\":{\"codes\":\"[\\\"Alto-Parana\\\"]\",\"countryId\":\"213\",\"dataId\":\"\",\"id\":\"137\",\"name\":\"Alto-Parana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":138,\"values\":{\"codes\":\"[\\\"Cortes\\\"]\",\"countryId\":\"172\",\"dataId\":\"\",\"id\":\"138\",\"name\":\"Cortes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":139,\"values\":{\"codes\":\"[\\\"Vojvodina\\\"]\",\"countryId\":\"78\",\"dataId\":\"\",\"id\":\"139\",\"name\":\"Vojvodina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":140,\"values\":{\"codes\":\"[\\\"Beyrouth\\\"]\",\"countryId\":\"34\",\"dataId\":\"\",\"id\":\"140\",\"name\":\"Beyrouth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":141,\"values\":{\"codes\":\"[\\\"德黑兰\\\"]\",\"countryId\":\"31\",\"dataId\":\"\",\"id\":\"141\",\"name\":\"德黑兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":142,\"values\":{\"codes\":\"[\\\"Andorra-la-Vella\\\"]\",\"countryId\":\"91\",\"dataId\":\"\",\"id\":\"142\",\"name\":\"Andorra-la-Vella\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":143,\"values\":{\"codes\":\"[\\\"马斯喀特\\\"]\",\"countryId\":\"42\",\"dataId\":\"\",\"id\":\"143\",\"name\":\"马斯喀特\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":144,\"values\":{\"codes\":\"[\\\"Principe\\\"]\",\"countryId\":\"110\",\"dataId\":\"\",\"id\":\"144\",\"name\":\"Principe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":145,\"values\":{\"codes\":\"[\\\"Plav\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"145\",\"name\":\"Plav\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":146,\"values\":{\"codes\":\"[\\\"Reykjavik\\\"]\",\"countryId\":\"52\",\"dataId\":\"\",\"id\":\"146\",\"name\":\"Reykjavik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":147,\"values\":{\"codes\":\"[\\\"Majuro\\\"]\",\"countryId\":\"147\",\"dataId\":\"\",\"id\":\"147\",\"name\":\"Majuro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":148,\"values\":{\"codes\":\"[\\\"Saint-Michael\\\"]\",\"countryId\":\"187\",\"dataId\":\"\",\"id\":\"148\",\"name\":\"Saint-Michael\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":149,\"values\":{\"codes\":\"[\\\"Saint-Andrew\\\"]\",\"countryId\":\"186\",\"dataId\":\"\",\"id\":\"149\",\"name\":\"Saint-Andrew\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":150,\"values\":{\"codes\":\"[\\\"Luanda\\\"]\",\"countryId\":\"127\",\"dataId\":\"\",\"id\":\"150\",\"name\":\"Luanda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":151,\"values\":{\"codes\":\"[\\\"San-Salvador\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"151\",\"name\":\"San-Salvador\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":152,\"values\":{\"codes\":\"[\\\"Maryland\\\"]\",\"countryId\":\"119\",\"dataId\":\"\",\"id\":\"152\",\"name\":\"Maryland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":153,\"values\":{\"codes\":\"[\\\"Bagmati\\\"]\",\"countryId\":\"17\",\"dataId\":\"\",\"id\":\"153\",\"name\":\"Bagmati\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":154,\"values\":{\"codes\":\"[\\\"Castries\\\"]\",\"countryId\":\"184\",\"dataId\":\"\",\"id\":\"154\",\"name\":\"Castries\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":155,\"values\":{\"codes\":\"[\\\"Balti\\\"]\",\"countryId\":\"60\",\"dataId\":\"\",\"id\":\"155\",\"name\":\"Balti\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":156,\"values\":{\"codes\":\"[\\\"Nicosia\\\"]\",\"countryId\":\"48\",\"dataId\":\"\",\"id\":\"156\",\"name\":\"Nicosia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":157,\"values\":{\"codes\":\"[\\\"Zadarska\\\"]\",\"countryId\":\"83\",\"dataId\":\"\",\"id\":\"157\",\"name\":\"Zadarska\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":158,\"values\":{\"codes\":\"[\\\"Western-Area\\\"]\",\"countryId\":\"118\",\"dataId\":\"\",\"id\":\"158\",\"name\":\"Western-Area\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":160,\"values\":{\"codes\":\"[\\\"Vientiane\\\"]\",\"countryId\":\"8\",\"dataId\":\"\",\"id\":\"160\",\"name\":\"Vientiane\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":161,\"values\":{\"codes\":\"[\\\"Kabul\\\"]\",\"countryId\":\"29\",\"dataId\":\"\",\"id\":\"161\",\"name\":\"Kabul\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":162,\"values\":{\"codes\":\"[\\\"Ouest\\\"]\",\"countryId\":\"179\",\"dataId\":\"\",\"id\":\"162\",\"name\":\"Ouest\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":163,\"values\":{\"codes\":\"[\\\"Tuamasaga\\\"]\",\"countryId\":\"152\",\"dataId\":\"\",\"id\":\"163\",\"name\":\"Tuamasaga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":164,\"values\":{\"codes\":\"[\\\"La-Paz\\\"]\",\"countryId\":\"208\",\"dataId\":\"\",\"id\":\"164\",\"name\":\"La-Paz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":165,\"values\":{\"codes\":\"[\\\"Montevideo\\\"]\",\"countryId\":\"212\",\"dataId\":\"\",\"id\":\"165\",\"name\":\"Montevideo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":166,\"values\":{\"codes\":\"[\\\"Managua\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"166\",\"name\":\"Managua\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":167,\"values\":{\"codes\":\"[\\\"Estuaire\\\"]\",\"countryId\":\"223\",\"dataId\":\"\",\"id\":\"167\",\"name\":\"Estuaire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":168,\"values\":{\"codes\":\"[\\\"Bissau\\\"]\",\"countryId\":\"116\",\"dataId\":\"\",\"id\":\"168\",\"name\":\"Bissau\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":169,\"values\":{\"codes\":\"[\\\"Mandoul\\\"]\",\"countryId\":\"224\",\"dataId\":\"\",\"id\":\"169\",\"name\":\"Mandoul\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":170,\"values\":{\"codes\":\"[\\\"Dakar\\\"]\",\"countryId\":\"111\",\"dataId\":\"\",\"id\":\"170\",\"name\":\"Dakar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":171,\"values\":{\"codes\":\"[\\\"Port-Louis\\\"]\",\"countryId\":\"138\",\"dataId\":\"\",\"id\":\"171\",\"name\":\"Port-Louis\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":172,\"values\":{\"codes\":\"[\\\"穆阿拉\\\"]\",\"countryId\":\"13\",\"dataId\":\"\",\"id\":\"172\",\"name\":\"穆阿拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":173,\"values\":{\"codes\":\"[\\\"Demerara-Mahaica\\\"]\",\"countryId\":\"203\",\"dataId\":\"\",\"id\":\"173\",\"name\":\"Demerara-Mahaica\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":174,\"values\":{\"codes\":\"[\\\"Port-of-Spain\\\"]\",\"countryId\":\"188\",\"dataId\":\"\",\"id\":\"174\",\"name\":\"Port-of-Spain\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":175,\"values\":{\"codes\":\"[\\\"Mauren\\\"]\",\"countryId\":\"68\",\"dataId\":\"\",\"id\":\"175\",\"name\":\"Mauren\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":176,\"values\":{\"codes\":\"[\\\"Banaadir\\\"]\",\"countryId\":\"102\",\"dataId\":\"\",\"id\":\"176\",\"name\":\"Banaadir\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":177,\"values\":{\"codes\":\"[\\\"Saint-George-Basseterre\\\"]\",\"countryId\":\"182\",\"dataId\":\"\",\"id\":\"177\",\"name\":\"Saint-George-Basseterre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":178,\"values\":{\"codes\":\"[\\\"Basse-Kotto\\\"]\",\"countryId\":\"226\",\"dataId\":\"\",\"id\":\"178\",\"name\":\"Basse-Kotto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":179,\"values\":{\"codes\":\"[\\\"Khartoum\\\"]\",\"countryId\":\"94\",\"dataId\":\"\",\"id\":\"179\",\"name\":\"Khartoum\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":180,\"values\":{\"codes\":\"[\\\"Khomas\\\"]\",\"countryId\":\"132\",\"dataId\":\"\",\"id\":\"180\",\"name\":\"Khomas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":181,\"values\":{\"codes\":\"[\\\"Littoral\\\"]\",\"countryId\":\"123\",\"dataId\":\"\",\"id\":\"181\",\"name\":\"Littoral\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":182,\"values\":{\"codes\":\"[\\\"Cuvette\\\"]\",\"countryId\":\"225\",\"dataId\":\"\",\"id\":\"182\",\"name\":\"Cuvette\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":183,\"values\":{\"codes\":\"[\\\"Kadiogo\\\"]\",\"countryId\":\"114\",\"dataId\":\"\",\"id\":\"183\",\"name\":\"Kadiogo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":184,\"values\":{\"codes\":\"[\\\"冈山县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"184\",\"name\":\"冈山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":185,\"values\":{\"codes\":\"[\\\"曼谷\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"185\",\"name\":\"曼谷\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":186,\"values\":{\"codes\":\"[\\\"Nakhon-Ratchasima\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"186\",\"name\":\"Nakhon-Ratchasima\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":187,\"values\":{\"codes\":\"[\\\"素攀武里府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"187\",\"name\":\"素攀武里府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":188,\"values\":{\"codes\":\"[\\\"华富里府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"188\",\"name\":\"华富里府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":189,\"values\":{\"codes\":\"[\\\"龙仔厝府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"189\",\"name\":\"龙仔厝府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":190,\"values\":{\"codes\":\"[\\\"大城府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"190\",\"name\":\"大城府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":191,\"values\":{\"codes\":\"[\\\"春蓬府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"191\",\"name\":\"春蓬府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":192,\"values\":{\"codes\":\"[\\\"洛坤府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"192\",\"name\":\"洛坤府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":193,\"values\":{\"codes\":\"[\\\"普吉府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"193\",\"name\":\"普吉府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":194,\"values\":{\"codes\":\"[\\\"攀牙府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"194\",\"name\":\"攀牙府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":195,\"values\":{\"codes\":\"[\\\"尖竹汶府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"195\",\"name\":\"尖竹汶府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":196,\"values\":{\"codes\":\"[\\\"罗勇府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"196\",\"name\":\"罗勇府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":197,\"values\":{\"codes\":\"[\\\"Chon-Buri\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"197\",\"name\":\"Chon-Buri\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":198,\"values\":{\"codes\":\"[\\\"素可泰府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"198\",\"name\":\"素可泰府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":199,\"values\":{\"codes\":\"[\\\"北榄坡府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"199\",\"name\":\"北榄坡府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":200,\"values\":{\"codes\":\"[\\\"碧差汶府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"200\",\"name\":\"碧差汶府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":201,\"values\":{\"codes\":\"[\\\"甘烹碧府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"201\",\"name\":\"甘烹碧府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":202,\"values\":{\"codes\":\"[\\\"彭世洛府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"202\",\"name\":\"彭世洛府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":203,\"values\":{\"codes\":\"[\\\"披集府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"203\",\"name\":\"披集府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":204,\"values\":{\"codes\":\"[\\\"佛统府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"204\",\"name\":\"佛统府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":205,\"values\":{\"codes\":\"[\\\"巴蜀府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"205\",\"name\":\"巴蜀府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":206,\"values\":{\"codes\":\"[\\\"叻丕府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"206\",\"name\":\"叻丕府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":207,\"values\":{\"codes\":\"[\\\"宋卡府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"207\",\"name\":\"宋卡府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":208,\"values\":{\"codes\":\"[\\\"素叻府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"208\",\"name\":\"素叻府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":209,\"values\":{\"codes\":\"[\\\"陶公府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"209\",\"name\":\"陶公府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":210,\"values\":{\"codes\":\"[\\\"东京都\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"210\",\"name\":\"东京都\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":211,\"values\":{\"codes\":\"[\\\"北大年府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"211\",\"name\":\"北大年府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":212,\"values\":{\"codes\":\"[\\\"玛哈沙拉堪府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"212\",\"name\":\"玛哈沙拉堪府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":213,\"values\":{\"codes\":\"[\\\"廊开府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"213\",\"name\":\"廊开府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":214,\"values\":{\"codes\":\"[\\\"孔敬府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"214\",\"name\":\"孔敬府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":215,\"values\":{\"codes\":\"[\\\"色军府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"215\",\"name\":\"色军府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":216,\"values\":{\"codes\":\"[\\\"帕尧府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"216\",\"name\":\"帕尧府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":217,\"values\":{\"codes\":\"[\\\"清迈府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"217\",\"name\":\"清迈府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":218,\"values\":{\"codes\":\"[\\\"巴吞他尼府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"218\",\"name\":\"巴吞他尼府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":219,\"values\":{\"codes\":\"[\\\"乌隆府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"219\",\"name\":\"乌隆府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":220,\"values\":{\"codes\":\"[\\\"四色菊府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"220\",\"name\":\"四色菊府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":221,\"values\":{\"codes\":\"[\\\"乌汶府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"221\",\"name\":\"乌汶府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":222,\"values\":{\"codes\":\"[\\\"素辇府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"222\",\"name\":\"素辇府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":223,\"values\":{\"codes\":\"[\\\"黎府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"223\",\"name\":\"黎府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":224,\"values\":{\"codes\":\"[\\\"那空帕农府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"224\",\"name\":\"那空帕农府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":225,\"values\":{\"codes\":\"[\\\"北柳府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"225\",\"name\":\"北柳府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":226,\"values\":{\"codes\":\"[\\\"乌泰他尼府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"226\",\"name\":\"乌泰他尼府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":227,\"values\":{\"codes\":\"[\\\"达府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"227\",\"name\":\"达府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":228,\"values\":{\"codes\":\"[\\\"莫达汉府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"228\",\"name\":\"莫达汉府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":229,\"values\":{\"codes\":\"[\\\"南奔府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"229\",\"name\":\"南奔府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":230,\"values\":{\"codes\":\"[\\\"惹拉府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"230\",\"name\":\"惹拉府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":231,\"values\":{\"codes\":\"[\\\"北碧府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"231\",\"name\":\"北碧府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":232,\"values\":{\"codes\":\"[\\\"程逸府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"232\",\"name\":\"程逸府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":233,\"values\":{\"codes\":\"[\\\"武里南府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"233\",\"name\":\"武里南府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":234,\"values\":{\"codes\":\"[\\\"黎逸府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"234\",\"name\":\"黎逸府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":235,\"values\":{\"codes\":\"[\\\"暖武里府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"235\",\"name\":\"暖武里府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":236,\"values\":{\"codes\":\"[\\\"巴真府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"236\",\"name\":\"巴真府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":237,\"values\":{\"codes\":\"[\\\"加拉信府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"237\",\"name\":\"加拉信府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":238,\"values\":{\"codes\":\"[\\\"夜功府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"238\",\"name\":\"夜功府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":239,\"values\":{\"codes\":\"[\\\"拉农府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"239\",\"name\":\"拉农府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":240,\"values\":{\"codes\":\"[\\\"博达伦府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"240\",\"name\":\"博达伦府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":241,\"values\":{\"codes\":\"[\\\"泰米尔纳德\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"241\",\"name\":\"泰米尔纳德\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":242,\"values\":{\"codes\":\"[\\\"马哈拉施特拉\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"242\",\"name\":\"马哈拉施特拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":243,\"values\":{\"codes\":\"[\\\"安德拉\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"243\",\"name\":\"安德拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":244,\"values\":{\"codes\":\"[\\\"西孟加拉\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"244\",\"name\":\"西孟加拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":245,\"values\":{\"codes\":\"[\\\"昌迪加尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"245\",\"name\":\"昌迪加尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":246,\"values\":{\"codes\":\"[\\\"北方邦\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"246\",\"name\":\"北方邦\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":247,\"values\":{\"codes\":\"[\\\"梅加拉亚\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"247\",\"name\":\"梅加拉亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":248,\"values\":{\"codes\":\"[\\\"吉隆坡\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"248\",\"name\":\"吉隆坡\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":249,\"values\":{\"codes\":\"[\\\"布城\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"249\",\"name\":\"布城\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":250,\"values\":{\"codes\":\"[\\\"霹雳州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"250\",\"name\":\"霹雳州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":251,\"values\":{\"codes\":\"[\\\"玻璃市\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"251\",\"name\":\"玻璃市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":252,\"values\":{\"codes\":\"[\\\"槟州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"252\",\"name\":\"槟州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":253,\"values\":{\"codes\":\"[\\\"吉打州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"253\",\"name\":\"吉打州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":254,\"values\":{\"codes\":\"[\\\"吉兰丹\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"254\",\"name\":\"吉兰丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":255,\"values\":{\"codes\":\"[\\\"彭亨州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"255\",\"name\":\"彭亨州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":256,\"values\":{\"codes\":\"[\\\"柔佛州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"256\",\"name\":\"柔佛州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":257,\"values\":{\"codes\":\"[\\\"森美兰\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"257\",\"name\":\"森美兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":258,\"values\":{\"codes\":\"[\\\"马六甲\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"258\",\"name\":\"马六甲\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":259,\"values\":{\"codes\":\"[\\\"砂拉越州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"259\",\"name\":\"砂拉越州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":260,\"values\":{\"codes\":\"[\\\"登嘉楼\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"260\",\"name\":\"登嘉楼\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":261,\"values\":{\"codes\":\"[\\\"纳闽\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"261\",\"name\":\"纳闽\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":262,\"values\":{\"codes\":\"[\\\"沙巴州\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"262\",\"name\":\"沙巴州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":263,\"values\":{\"codes\":\"[\\\"红统府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"263\",\"name\":\"红统府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":264,\"values\":{\"codes\":\"[\\\"信武里府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"264\",\"name\":\"信武里府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":265,\"values\":{\"codes\":\"[\\\"北标府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"265\",\"name\":\"北标府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":266,\"values\":{\"codes\":\"[\\\"南邦府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"266\",\"name\":\"南邦府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":267,\"values\":{\"codes\":\"[\\\"帕府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"267\",\"name\":\"帕府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":268,\"values\":{\"codes\":\"[\\\"中央邦\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"268\",\"name\":\"中央邦\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":269,\"values\":{\"codes\":\"[\\\"古吉拉特\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"269\",\"name\":\"古吉拉特\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":270,\"values\":{\"codes\":\"[\\\"哈里亚纳\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"270\",\"name\":\"哈里亚纳\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":271,\"values\":{\"codes\":\"[\\\"德里国家首都辖区\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"271\",\"name\":\"德里国家首都辖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":272,\"values\":{\"codes\":\"[\\\"特伦甘地\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"272\",\"name\":\"特伦甘地\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":273,\"values\":{\"codes\":\"[\\\"拉贾斯坦\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"273\",\"name\":\"拉贾斯坦\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":274,\"values\":{\"codes\":\"[\\\"恰蒂斯加尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"274\",\"name\":\"恰蒂斯加尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":275,\"values\":{\"codes\":\"[\\\"喀拉拉\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"275\",\"name\":\"喀拉拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":276,\"values\":{\"codes\":\"[\\\"加利福尼亚\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"276\",\"name\":\"加利福尼亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":277,\"values\":{\"codes\":\"[\\\"佐贺县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"277\",\"name\":\"佐贺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":278,\"values\":{\"codes\":\"[\\\"大阪府\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"278\",\"name\":\"大阪府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":279,\"values\":{\"codes\":\"[\\\"千叶县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"279\",\"name\":\"千叶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":280,\"values\":{\"codes\":\"[\\\"埼玉县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"280\",\"name\":\"埼玉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":281,\"values\":{\"codes\":\"[\\\"爱知县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"281\",\"name\":\"爱知县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":282,\"values\":{\"codes\":\"[\\\"香川县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"282\",\"name\":\"香川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":283,\"values\":{\"codes\":\"[\\\"富山县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"283\",\"name\":\"富山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":284,\"values\":{\"codes\":\"[\\\"北海道\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"284\",\"name\":\"北海道\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":285,\"values\":{\"codes\":\"[\\\"兵库县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"285\",\"name\":\"兵库县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":286,\"values\":{\"codes\":\"[\\\"岩手县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"286\",\"name\":\"岩手县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":287,\"values\":{\"codes\":\"[\\\"宫城县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"287\",\"name\":\"宫城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":288,\"values\":{\"codes\":\"[\\\"秋田县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"288\",\"name\":\"秋田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":289,\"values\":{\"codes\":\"[\\\"福岛县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"289\",\"name\":\"福岛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":290,\"values\":{\"codes\":\"[\\\"茨城县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"290\",\"name\":\"茨城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":291,\"values\":{\"codes\":\"[\\\"栃木县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"291\",\"name\":\"栃木县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":292,\"values\":{\"codes\":\"[\\\"群马县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"292\",\"name\":\"群马县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":293,\"values\":{\"codes\":\"[\\\"新泻县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"293\",\"name\":\"新泻县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":294,\"values\":{\"codes\":\"[\\\"甲府\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"294\",\"name\":\"甲府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":295,\"values\":{\"codes\":\"[\\\"长野县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"295\",\"name\":\"长野县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":296,\"values\":{\"codes\":\"[\\\"岐阜县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"296\",\"name\":\"岐阜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":297,\"values\":{\"codes\":\"[\\\"静冈县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"297\",\"name\":\"静冈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":298,\"values\":{\"codes\":\"[\\\"旁遮普\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"298\",\"name\":\"旁遮普\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":299,\"values\":{\"codes\":\"[\\\"新南威尔士\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"299\",\"name\":\"新南威尔士\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":300,\"values\":{\"codes\":\"[\\\"河静省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"300\",\"name\":\"河静省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":301,\"values\":{\"codes\":\"[\\\"河内\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"301\",\"name\":\"河内\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":302,\"values\":{\"codes\":\"[\\\"多乐省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"302\",\"name\":\"多乐省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":303,\"values\":{\"codes\":\"[\\\"庆和省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"303\",\"name\":\"庆和省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":304,\"values\":{\"codes\":\"[\\\"胡志明\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"304\",\"name\":\"胡志明\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":305,\"values\":{\"codes\":\"[\\\"安江省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"305\",\"name\":\"安江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":306,\"values\":{\"codes\":\"[\\\"永富省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"306\",\"name\":\"永富省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":307,\"values\":{\"codes\":\"[\\\"同奈省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"307\",\"name\":\"同奈省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":308,\"values\":{\"codes\":\"[\\\"富安省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"308\",\"name\":\"富安省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":309,\"values\":{\"codes\":\"[\\\"宁顺省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"309\",\"name\":\"宁顺省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":310,\"values\":{\"codes\":\"[\\\"顺化省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"310\",\"name\":\"顺化省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":311,\"values\":{\"codes\":\"[\\\"富寿省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"311\",\"name\":\"富寿省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":312,\"values\":{\"codes\":\"[\\\"坚江省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"312\",\"name\":\"坚江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":313,\"values\":{\"codes\":\"[\\\"西宁省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"313\",\"name\":\"西宁省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":314,\"values\":{\"codes\":\"[\\\"安沛省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"314\",\"name\":\"安沛省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":315,\"values\":{\"codes\":\"[\\\"南广平\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"315\",\"name\":\"南广平\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":316,\"values\":{\"codes\":\"[\\\"隆安省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"316\",\"name\":\"隆安省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":317,\"values\":{\"codes\":\"[\\\"北江省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"317\",\"name\":\"北江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":318,\"values\":{\"codes\":\"[\\\"清化省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"318\",\"name\":\"清化省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":319,\"values\":{\"codes\":\"[\\\"昆嵩省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"319\",\"name\":\"昆嵩省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":320,\"values\":{\"codes\":\"[\\\"林同省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"320\",\"name\":\"林同省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":321,\"values\":{\"codes\":\"[\\\"广义省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"321\",\"name\":\"广义省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":322,\"values\":{\"codes\":\"[\\\"和平省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"322\",\"name\":\"和平省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":323,\"values\":{\"codes\":\"[\\\"太原省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"323\",\"name\":\"太原省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":324,\"values\":{\"codes\":\"[\\\"广宁省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"324\",\"name\":\"广宁省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":325,\"values\":{\"codes\":\"[\\\"槟知省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"325\",\"name\":\"槟知省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":326,\"values\":{\"codes\":\"[\\\"宣光省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"326\",\"name\":\"宣光省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":327,\"values\":{\"codes\":\"[\\\"海防市\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"327\",\"name\":\"海防市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":328,\"values\":{\"codes\":\"[\\\"北宁省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"328\",\"name\":\"北宁省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":329,\"values\":{\"codes\":\"[\\\"东塔省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"329\",\"name\":\"东塔省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":330,\"values\":{\"codes\":\"[\\\"宁平省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"330\",\"name\":\"宁平省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":331,\"values\":{\"codes\":\"[\\\"南定省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"331\",\"name\":\"南定省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":332,\"values\":{\"codes\":\"[\\\"巴地斗顿\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"332\",\"name\":\"巴地斗顿\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":333,\"values\":{\"codes\":\"[\\\"平阳省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"333\",\"name\":\"平阳省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":334,\"values\":{\"codes\":\"[\\\"前江省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"334\",\"name\":\"前江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":335,\"values\":{\"codes\":\"[\\\"岘港市\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"335\",\"name\":\"岘港市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":336,\"values\":{\"codes\":\"[\\\"金瓯省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"336\",\"name\":\"金瓯省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":337,\"values\":{\"codes\":\"[\\\"芹苴市\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"337\",\"name\":\"芹苴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":338,\"values\":{\"codes\":\"[\\\"平顺省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"338\",\"name\":\"平顺省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":339,\"values\":{\"codes\":\"[\\\"平定省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"339\",\"name\":\"平定省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":340,\"values\":{\"codes\":\"[\\\"广治省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"340\",\"name\":\"广治省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":341,\"values\":{\"codes\":\"[\\\"永隆省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"341\",\"name\":\"永隆省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":342,\"values\":{\"codes\":\"[\\\"嘉莱省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"342\",\"name\":\"嘉莱省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":343,\"values\":{\"codes\":\"[\\\"广南省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"343\",\"name\":\"广南省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":344,\"values\":{\"codes\":\"[\\\"老街省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"344\",\"name\":\"老街省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":345,\"values\":{\"codes\":\"[\\\"谅山省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"345\",\"name\":\"谅山省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":346,\"values\":{\"codes\":\"[\\\"神奈川县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"346\",\"name\":\"神奈川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":347,\"values\":{\"codes\":\"[\\\"福冈县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"347\",\"name\":\"福冈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":348,\"values\":{\"codes\":\"[\\\"昆士兰\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"348\",\"name\":\"昆士兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":349,\"values\":{\"codes\":\"[\\\"南澳大利亚\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"349\",\"name\":\"南澳大利亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":350,\"values\":{\"codes\":\"[\\\"西澳大利亚\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"350\",\"name\":\"西澳大利亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":351,\"values\":{\"codes\":\"[\\\"塔斯马尼亚\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"351\",\"name\":\"塔斯马尼亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":352,\"values\":{\"codes\":\"[\\\"沙敦府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"352\",\"name\":\"沙敦府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":353,\"values\":{\"codes\":\"[\\\"益梭通府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"353\",\"name\":\"益梭通府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":354,\"values\":{\"codes\":\"[\\\"夜丰颂府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"354\",\"name\":\"夜丰颂府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":355,\"values\":{\"codes\":\"[\\\"猜也奔府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"355\",\"name\":\"猜也奔府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":356,\"values\":{\"codes\":\"[\\\"阿萨姆\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"356\",\"name\":\"阿萨姆\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":357,\"values\":{\"codes\":\"[\\\"查谟和克什米尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"357\",\"name\":\"查谟和克什米尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":358,\"values\":{\"codes\":\"[\\\"喜马偕尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"358\",\"name\":\"喜马偕尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":359,\"values\":{\"codes\":\"[\\\"比哈尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"359\",\"name\":\"比哈尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":360,\"values\":{\"codes\":\"[\\\"Loire\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"360\",\"name\":\"Loire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":361,\"values\":{\"codes\":\"[\\\"Gironde\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"361\",\"name\":\"Gironde\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":362,\"values\":{\"codes\":\"[\\\"Vaucluse\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"362\",\"name\":\"Vaucluse\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":363,\"values\":{\"codes\":\"[\\\"Landes\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"363\",\"name\":\"Landes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":364,\"values\":{\"codes\":\"[\\\"巴黎\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"364\",\"name\":\"巴黎\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":365,\"values\":{\"codes\":\"[\\\"Var\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"365\",\"name\":\"Var\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":366,\"values\":{\"codes\":\"[\\\"Hauts-de-Seine\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"366\",\"name\":\"Hauts-de-Seine\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":367,\"values\":{\"codes\":\"[\\\"Morbihan\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"367\",\"name\":\"Morbihan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":368,\"values\":{\"codes\":\"[\\\"Calvados\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"368\",\"name\":\"Calvados\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":369,\"values\":{\"codes\":\"[\\\"Manche\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"369\",\"name\":\"Manche\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":370,\"values\":{\"codes\":\"[\\\"Haute-Loire\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"370\",\"name\":\"Haute-Loire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":371,\"values\":{\"codes\":\"[\\\"Aude\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"371\",\"name\":\"Aude\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":372,\"values\":{\"codes\":\"[\\\"Oise\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"372\",\"name\":\"Oise\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":373,\"values\":{\"codes\":\"[\\\"Somme\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"373\",\"name\":\"Somme\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":374,\"values\":{\"codes\":\"[\\\"Pas-de-Calais\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"374\",\"name\":\"Pas-de-Calais\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":375,\"values\":{\"codes\":\"[\\\"Aisne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"375\",\"name\":\"Aisne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":376,\"values\":{\"codes\":\"[\\\"Tarn\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"376\",\"name\":\"Tarn\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":377,\"values\":{\"codes\":\"[\\\"Haute-Vienne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"377\",\"name\":\"Haute-Vienne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":378,\"values\":{\"codes\":\"[\\\"Charente-Maritime\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"378\",\"name\":\"Charente-Maritime\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":379,\"values\":{\"codes\":\"[\\\"Vienne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"379\",\"name\":\"Vienne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":380,\"values\":{\"codes\":\"[\\\"Correze\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"380\",\"name\":\"Correze\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":381,\"values\":{\"codes\":\"[\\\"Charente\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"381\",\"name\":\"Charente\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":382,\"values\":{\"codes\":\"[\\\"Creuse\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"382\",\"name\":\"Creuse\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":383,\"values\":{\"codes\":\"[\\\"Savoie\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"383\",\"name\":\"Savoie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":384,\"values\":{\"codes\":\"[\\\"Ille-et-Vilaine\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"384\",\"name\":\"Ille-et-Vilaine\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":385,\"values\":{\"codes\":\"[\\\"Seine-Saint-Denis\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"385\",\"name\":\"Seine-Saint-Denis\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":386,\"values\":{\"codes\":\"[\\\"Maine-et-Loire\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"386\",\"name\":\"Maine-et-Loire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":387,\"values\":{\"codes\":\"[\\\"Val-de-Marne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"387\",\"name\":\"Val-de-Marne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":388,\"values\":{\"codes\":\"[\\\"Ardennes\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"388\",\"name\":\"Ardennes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":389,\"values\":{\"codes\":\"[\\\"Aube\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"389\",\"name\":\"Aube\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":390,\"values\":{\"codes\":\"[\\\"Alpes-Maritimes\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"390\",\"name\":\"Alpes-Maritimes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":391,\"values\":{\"codes\":\"[\\\"Slough\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"391\",\"name\":\"Slough\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":392,\"values\":{\"codes\":\"[\\\"慕尼黑\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"392\",\"name\":\"慕尼黑\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":393,\"values\":{\"codes\":\"[\\\"Nordrhein-Westfalen\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"393\",\"name\":\"Nordrhein-Westfalen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":394,\"values\":{\"codes\":\"[\\\"Palermo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"394\",\"name\":\"Palermo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":395,\"values\":{\"codes\":\"[\\\"罗马\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"395\",\"name\":\"罗马\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":396,\"values\":{\"codes\":\"[\\\"Hamburg\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"396\",\"name\":\"Hamburg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":397,\"values\":{\"codes\":\"[\\\"柏林\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"397\",\"name\":\"柏林\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":398,\"values\":{\"codes\":\"[\\\"Rio-de-Janeiro\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"398\",\"name\":\"Rio-de-Janeiro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":399,\"values\":{\"codes\":\"[\\\"Manchester\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"399\",\"name\":\"Manchester\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":400,\"values\":{\"codes\":\"[\\\"弗吉尼亚\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"400\",\"name\":\"弗吉尼亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":401,\"values\":{\"codes\":\"[\\\"Cork\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"401\",\"name\":\"Cork\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":402,\"values\":{\"codes\":\"[\\\"南加利福尼亚\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"402\",\"name\":\"南加利福尼亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":403,\"values\":{\"codes\":\"[\\\"Edinburgh\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"403\",\"name\":\"Edinburgh\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":404,\"values\":{\"codes\":\"[\\\"Parana\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"404\",\"name\":\"Parana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":405,\"values\":{\"codes\":\"[\\\"Minas-Gerais\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"405\",\"name\":\"Minas-Gerais\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":406,\"values\":{\"codes\":\"[\\\"Rio-Grande-do-Sul\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"406\",\"name\":\"Rio-Grande-do-Sul\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":407,\"values\":{\"codes\":\"[\\\"Bashkortostan\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"407\",\"name\":\"Bashkortostan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":408,\"values\":{\"codes\":\"[\\\"Pescara\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"408\",\"name\":\"Pescara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":409,\"values\":{\"codes\":\"[\\\"Ascoli-Piceno\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"409\",\"name\":\"Ascoli-Piceno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":410,\"values\":{\"codes\":\"[\\\"Chieti\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"410\",\"name\":\"Chieti\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":411,\"values\":{\"codes\":\"[\\\"Macerata\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"411\",\"name\":\"Macerata\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":412,\"values\":{\"codes\":\"[\\\"Cagliari\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"412\",\"name\":\"Cagliari\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":413,\"values\":{\"codes\":\"[\\\"Bari\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"413\",\"name\":\"Bari\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":414,\"values\":{\"codes\":\"[\\\"Catania\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"414\",\"name\":\"Catania\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":415,\"values\":{\"codes\":\"[\\\"Messina\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"415\",\"name\":\"Messina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":416,\"values\":{\"codes\":\"[\\\"Caltanissetta\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"416\",\"name\":\"Caltanissetta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":417,\"values\":{\"codes\":\"[\\\"Potenza\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"417\",\"name\":\"Potenza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":418,\"values\":{\"codes\":\"[\\\"Genova\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"418\",\"name\":\"Genova\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":419,\"values\":{\"codes\":\"[\\\"Agrigento\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"419\",\"name\":\"Agrigento\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":420,\"values\":{\"codes\":\"[\\\"Taranto\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"420\",\"name\":\"Taranto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":421,\"values\":{\"codes\":\"[\\\"Cosenza\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"421\",\"name\":\"Cosenza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":422,\"values\":{\"codes\":\"[\\\"Lecce\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"422\",\"name\":\"Lecce\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":423,\"values\":{\"codes\":\"[\\\"Rimini\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"423\",\"name\":\"Rimini\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":424,\"values\":{\"codes\":\"[\\\"Terni\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"424\",\"name\":\"Terni\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":425,\"values\":{\"codes\":\"[\\\"Pisa\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"425\",\"name\":\"Pisa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":426,\"values\":{\"codes\":\"[\\\"Lucca\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"426\",\"name\":\"Lucca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":427,\"values\":{\"codes\":\"[\\\"Aosta\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"427\",\"name\":\"Aosta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":428,\"values\":{\"codes\":\"[\\\"Bergamo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"428\",\"name\":\"Bergamo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":429,\"values\":{\"codes\":\"[\\\"Trento\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"429\",\"name\":\"Trento\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":430,\"values\":{\"codes\":\"[\\\"Parma\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"430\",\"name\":\"Parma\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":431,\"values\":{\"codes\":\"[\\\"Bologna\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"431\",\"name\":\"Bologna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":432,\"values\":{\"codes\":\"[\\\"Vicenza\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"432\",\"name\":\"Vicenza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":433,\"values\":{\"codes\":\"[\\\"Pavia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"433\",\"name\":\"Pavia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":434,\"values\":{\"codes\":\"[\\\"Lecco\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"434\",\"name\":\"Lecco\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":435,\"values\":{\"codes\":\"[\\\"Como\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"435\",\"name\":\"Como\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":436,\"values\":{\"codes\":\"[\\\"Varese\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"436\",\"name\":\"Varese\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":437,\"values\":{\"codes\":\"[\\\"Brescia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"437\",\"name\":\"Brescia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":438,\"values\":{\"codes\":\"[\\\"Imperia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"438\",\"name\":\"Imperia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":439,\"values\":{\"codes\":\"[\\\"Novara\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"439\",\"name\":\"Novara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":440,\"values\":{\"codes\":\"[\\\"Teramo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"440\",\"name\":\"Teramo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":441,\"values\":{\"codes\":\"[\\\"Prato\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"441\",\"name\":\"Prato\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":442,\"values\":{\"codes\":\"[\\\"Ragusa\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"442\",\"name\":\"Ragusa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":443,\"values\":{\"codes\":\"[\\\"Brindisi\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"443\",\"name\":\"Brindisi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":444,\"values\":{\"codes\":\"[\\\"Salerno\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"444\",\"name\":\"Salerno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":445,\"values\":{\"codes\":\"[\\\"Napoli\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"445\",\"name\":\"Napoli\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":446,\"values\":{\"codes\":\"[\\\"Crotone\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"446\",\"name\":\"Crotone\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":447,\"values\":{\"codes\":\"[\\\"Modena\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"447\",\"name\":\"Modena\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":448,\"values\":{\"codes\":\"[\\\"Reggio-Emilia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"448\",\"name\":\"Reggio-Emilia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":449,\"values\":{\"codes\":\"[\\\"Piacenza\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"449\",\"name\":\"Piacenza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":450,\"values\":{\"codes\":\"[\\\"Alessandria\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"450\",\"name\":\"Alessandria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":451,\"values\":{\"codes\":\"[\\\"Ancona\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"451\",\"name\":\"Ancona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":452,\"values\":{\"codes\":\"[\\\"Verona\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"452\",\"name\":\"Verona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":453,\"values\":{\"codes\":\"[\\\"Asti\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"453\",\"name\":\"Asti\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":454,\"values\":{\"codes\":\"[\\\"Pistoia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"454\",\"name\":\"Pistoia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":455,\"values\":{\"codes\":\"[\\\"Latina\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"455\",\"name\":\"Latina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":456,\"values\":{\"codes\":\"[\\\"La-Spezia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"456\",\"name\":\"La-Spezia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":457,\"values\":{\"codes\":\"[\\\"Arezzo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"457\",\"name\":\"Arezzo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":458,\"values\":{\"codes\":\"[\\\"Ravenna\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"458\",\"name\":\"Ravenna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":459,\"values\":{\"codes\":\"[\\\"Siena\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"459\",\"name\":\"Siena\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":460,\"values\":{\"codes\":\"[\\\"Cremona\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"460\",\"name\":\"Cremona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":461,\"values\":{\"codes\":\"[\\\"Savona\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"461\",\"name\":\"Savona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":462,\"values\":{\"codes\":\"[\\\"Sassari\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"462\",\"name\":\"Sassari\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":463,\"values\":{\"codes\":\"[\\\"Campobasso\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"463\",\"name\":\"Campobasso\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":464,\"values\":{\"codes\":\"[\\\"Caserta\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"464\",\"name\":\"Caserta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":465,\"values\":{\"codes\":\"[\\\"Cuneo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"465\",\"name\":\"Cuneo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":466,\"values\":{\"codes\":\"[\\\"Biella\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"466\",\"name\":\"Biella\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":467,\"values\":{\"codes\":\"[\\\"Vercelli\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"467\",\"name\":\"Vercelli\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":468,\"values\":{\"codes\":\"[\\\"Treviso\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"468\",\"name\":\"Treviso\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":469,\"values\":{\"codes\":\"[\\\"Ferrara\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"469\",\"name\":\"Ferrara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":470,\"values\":{\"codes\":\"[\\\"Belluno\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"470\",\"name\":\"Belluno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":471,\"values\":{\"codes\":\"[\\\"Bolzano\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"471\",\"name\":\"Bolzano\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":472,\"values\":{\"codes\":\"[\\\"Rovigo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"472\",\"name\":\"Rovigo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":473,\"values\":{\"codes\":\"[\\\"Fermo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"473\",\"name\":\"Fermo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":474,\"values\":{\"codes\":\"[\\\"Massa-Carrara\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"474\",\"name\":\"Massa-Carrara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":475,\"values\":{\"codes\":\"[\\\"Grosseto\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"475\",\"name\":\"Grosseto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":476,\"values\":{\"codes\":\"[\\\"Livorno\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"476\",\"name\":\"Livorno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":477,\"values\":{\"codes\":\"[\\\"Reggio-Calabria\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"477\",\"name\":\"Reggio-Calabria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":478,\"values\":{\"codes\":\"[\\\"Avellino\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"478\",\"name\":\"Avellino\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":479,\"values\":{\"codes\":\"[\\\"Trapani\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"479\",\"name\":\"Trapani\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":480,\"values\":{\"codes\":\"[\\\"Perugia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"480\",\"name\":\"Perugia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":481,\"values\":{\"codes\":\"[\\\"Mantova\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"481\",\"name\":\"Mantova\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":482,\"values\":{\"codes\":\"[\\\"Baden-Wurttemberg\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"482\",\"name\":\"Baden-Wurttemberg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":483,\"values\":{\"codes\":\"[\\\"Pazardzhik\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"483\",\"name\":\"Pazardzhik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":484,\"values\":{\"codes\":\"[\\\"Zug\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"484\",\"name\":\"Zug\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":485,\"values\":{\"codes\":\"[\\\"Toledo\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"485\",\"name\":\"Toledo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":486,\"values\":{\"codes\":\"[\\\"北荷兰\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"486\",\"name\":\"北荷兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":487,\"values\":{\"codes\":\"[\\\"Bas-Rhin\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"487\",\"name\":\"Bas-Rhin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":488,\"values\":{\"codes\":\"[\\\"新泽西\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"488\",\"name\":\"新泽西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":489,\"values\":{\"codes\":\"[\\\"田纳西\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"489\",\"name\":\"田纳西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":490,\"values\":{\"codes\":\"[\\\"魁北克\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"490\",\"name\":\"魁北克\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":491,\"values\":{\"codes\":\"[\\\"Territoire-de-Belfort\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"491\",\"name\":\"Territoire-de-Belfort\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":492,\"values\":{\"codes\":\"[\\\"Gelderland\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"492\",\"name\":\"Gelderland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":493,\"values\":{\"codes\":\"[\\\"马里兰\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"493\",\"name\":\"马里兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":494,\"values\":{\"codes\":\"[\\\"Pohjanmaa\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"494\",\"name\":\"Pohjanmaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":495,\"values\":{\"codes\":\"[\\\"列宁格勒\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"495\",\"name\":\"列宁格勒\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":496,\"values\":{\"codes\":\"[\\\"Irkutskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"496\",\"name\":\"Irkutskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":497,\"values\":{\"codes\":\"[\\\"Nenetskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"497\",\"name\":\"Nenetskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":498,\"values\":{\"codes\":\"[\\\"Schleswig-Holstein\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"498\",\"name\":\"Schleswig-Holstein\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":499,\"values\":{\"codes\":\"[\\\"Antalya\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"499\",\"name\":\"Antalya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":500,\"values\":{\"codes\":\"[\\\"Ankara\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"500\",\"name\":\"Ankara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":501,\"values\":{\"codes\":\"[\\\"Santa-Cruz-de-Tenerife\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"501\",\"name\":\"Santa-Cruz-de-Tenerife\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":502,\"values\":{\"codes\":\"[\\\"Ciudad-Real\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"502\",\"name\":\"Ciudad-Real\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":503,\"values\":{\"codes\":\"[\\\"Utrecht\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"503\",\"name\":\"Utrecht\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":504,\"values\":{\"codes\":\"[\\\"Cambridgeshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"504\",\"name\":\"Cambridgeshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":505,\"values\":{\"codes\":\"[\\\"Seine-et-Marne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"505\",\"name\":\"Seine-et-Marne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":506,\"values\":{\"codes\":\"[\\\"克里米亚\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"506\",\"name\":\"克里米亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":507,\"values\":{\"codes\":\"[\\\"Saarland\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"507\",\"name\":\"Saarland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":508,\"values\":{\"codes\":\"[\\\"Kerry\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"508\",\"name\":\"Kerry\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":509,\"values\":{\"codes\":\"[\\\"Sevilla\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"509\",\"name\":\"Sevilla\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":510,\"values\":{\"codes\":\"[\\\"Alicante\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"510\",\"name\":\"Alicante\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":511,\"values\":{\"codes\":\"[\\\"Murcia\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"511\",\"name\":\"Murcia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":512,\"values\":{\"codes\":\"[\\\"Bacs-Kiskun\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"512\",\"name\":\"Bacs-Kiskun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":513,\"values\":{\"codes\":\"[\\\"Nizhegorodskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"513\",\"name\":\"Nizhegorodskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":514,\"values\":{\"codes\":\"[\\\"Tyumenskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"514\",\"name\":\"Tyumenskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":515,\"values\":{\"codes\":\"[\\\"Albacete\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"515\",\"name\":\"Albacete\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":516,\"values\":{\"codes\":\"[\\\"Omskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"516\",\"name\":\"Omskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":517,\"values\":{\"codes\":\"[\\\"Khakasiya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"517\",\"name\":\"Khakasiya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":518,\"values\":{\"codes\":\"[\\\"Kemerovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"518\",\"name\":\"Kemerovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":519,\"values\":{\"codes\":\"[\\\"Krasnoyarskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"519\",\"name\":\"Krasnoyarskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":520,\"values\":{\"codes\":\"[\\\"Atyrau\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"520\",\"name\":\"Atyrau\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":521,\"values\":{\"codes\":\"[\\\"Samarskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"521\",\"name\":\"Samarskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":522,\"values\":{\"codes\":\"[\\\"Volgogradskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"522\",\"name\":\"Volgogradskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":523,\"values\":{\"codes\":\"[\\\"Ulyanovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"523\",\"name\":\"Ulyanovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":524,\"values\":{\"codes\":\"[\\\"Saratovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"524\",\"name\":\"Saratovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":525,\"values\":{\"codes\":\"[\\\"Bryanskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"525\",\"name\":\"Bryanskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":526,\"values\":{\"codes\":\"[\\\"Kaluzhskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"526\",\"name\":\"Kaluzhskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":527,\"values\":{\"codes\":\"[\\\"Ivanovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"527\",\"name\":\"Ivanovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":528,\"values\":{\"codes\":\"[\\\"Krasnodarskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"528\",\"name\":\"Krasnodarskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":529,\"values\":{\"codes\":\"[\\\"Permskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"529\",\"name\":\"Permskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":530,\"values\":{\"codes\":\"[\\\"Yaroslavskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"530\",\"name\":\"Yaroslavskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":531,\"values\":{\"codes\":\"[\\\"Tverskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"531\",\"name\":\"Tverskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":532,\"values\":{\"codes\":\"[\\\"Smolenskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"532\",\"name\":\"Smolenskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":533,\"values\":{\"codes\":\"[\\\"Astrakhanskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"533\",\"name\":\"Astrakhanskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":534,\"values\":{\"codes\":\"[\\\"Kostromskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"534\",\"name\":\"Kostromskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":535,\"values\":{\"codes\":\"[\\\"Kurskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"535\",\"name\":\"Kurskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":536,\"values\":{\"codes\":\"[\\\"Vladimirskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"536\",\"name\":\"Vladimirskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":537,\"values\":{\"codes\":\"[\\\"Lipetskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"537\",\"name\":\"Lipetskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":538,\"values\":{\"codes\":\"[\\\"Rostovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"538\",\"name\":\"Rostovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":539,\"values\":{\"codes\":\"[\\\"Vologodskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"539\",\"name\":\"Vologodskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":540,\"values\":{\"codes\":\"[\\\"Voronezhskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"540\",\"name\":\"Voronezhskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":541,\"values\":{\"codes\":\"[\\\"Arkhangelskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"541\",\"name\":\"Arkhangelskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":542,\"values\":{\"codes\":\"[\\\"Kaliningradskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"542\",\"name\":\"Kaliningradskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":543,\"values\":{\"codes\":\"[\\\"Chelyabinskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"543\",\"name\":\"Chelyabinskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":544,\"values\":{\"codes\":\"[\\\"Khabarovskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"544\",\"name\":\"Khabarovskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":545,\"values\":{\"codes\":\"[\\\"Liverpool\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"545\",\"name\":\"Liverpool\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":546,\"values\":{\"codes\":\"[\\\"Dundee\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"546\",\"name\":\"Dundee\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":547,\"values\":{\"codes\":\"[\\\"Devon\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"547\",\"name\":\"Devon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":548,\"values\":{\"codes\":\"[\\\"East-Sussex\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"548\",\"name\":\"East-Sussex\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":549,\"values\":{\"codes\":\"[\\\"Cardiff\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"549\",\"name\":\"Cardiff\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":550,\"values\":{\"codes\":\"[\\\"Gloucestershire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"550\",\"name\":\"Gloucestershire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":551,\"values\":{\"codes\":\"[\\\"Newcastle-upon-Tyne\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"551\",\"name\":\"Newcastle-upon-Tyne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":552,\"values\":{\"codes\":\"[\\\"Northamptonshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"552\",\"name\":\"Northamptonshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":553,\"values\":{\"codes\":\"[\\\"Somerset\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"553\",\"name\":\"Somerset\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":554,\"values\":{\"codes\":\"[\\\"Doncaster\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"554\",\"name\":\"Doncaster\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":555,\"values\":{\"codes\":\"[\\\"Wolverhampton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"555\",\"name\":\"Wolverhampton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":556,\"values\":{\"codes\":\"[\\\"Nottinghamshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"556\",\"name\":\"Nottinghamshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":557,\"values\":{\"codes\":\"[\\\"Lancashire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"557\",\"name\":\"Lancashire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":558,\"values\":{\"codes\":\"[\\\"Worcestershire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"558\",\"name\":\"Worcestershire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":559,\"values\":{\"codes\":\"[\\\"Kent\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"559\",\"name\":\"Kent\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":560,\"values\":{\"codes\":\"[\\\"Essex\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"560\",\"name\":\"Essex\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":561,\"values\":{\"codes\":\"[\\\"Glasgow\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"561\",\"name\":\"Glasgow\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":562,\"values\":{\"codes\":\"[\\\"Wrexham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"562\",\"name\":\"Wrexham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":563,\"values\":{\"codes\":\"[\\\"Hertfordshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"563\",\"name\":\"Hertfordshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":564,\"values\":{\"codes\":\"[\\\"Leeds\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"564\",\"name\":\"Leeds\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":565,\"values\":{\"codes\":\"[\\\"Staffordshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"565\",\"name\":\"Staffordshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":566,\"values\":{\"codes\":\"[\\\"Bristol\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"566\",\"name\":\"Bristol\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":567,\"values\":{\"codes\":\"[\\\"North-Yorkshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"567\",\"name\":\"North-Yorkshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":568,\"values\":{\"codes\":\"[\\\"Leicestershire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"568\",\"name\":\"Leicestershire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":569,\"values\":{\"codes\":\"[\\\"Cumbria\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"569\",\"name\":\"Cumbria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":570,\"values\":{\"codes\":\"[\\\"Hampshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"570\",\"name\":\"Hampshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":571,\"values\":{\"codes\":\"[\\\"North-Lanarkshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"571\",\"name\":\"North-Lanarkshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":572,\"values\":{\"codes\":\"[\\\"Lincolnshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"572\",\"name\":\"Lincolnshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":573,\"values\":{\"codes\":\"[\\\"Swansea\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"573\",\"name\":\"Swansea\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":574,\"values\":{\"codes\":\"[\\\"Falkirk\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"574\",\"name\":\"Falkirk\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":575,\"values\":{\"codes\":\"[\\\"Venezia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"575\",\"name\":\"Venezia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":576,\"values\":{\"codes\":\"[\\\"East-Ayrshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"576\",\"name\":\"East-Ayrshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":577,\"values\":{\"codes\":\"[\\\"Sheffield\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"577\",\"name\":\"Sheffield\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":578,\"values\":{\"codes\":\"[\\\"Birmingham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"578\",\"name\":\"Birmingham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":579,\"values\":{\"codes\":\"[\\\"北爱尔兰\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"579\",\"name\":\"北爱尔兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":580,\"values\":{\"codes\":\"[\\\"Surrey\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"580\",\"name\":\"Surrey\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":581,\"values\":{\"codes\":\"[\\\"Coventry\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"581\",\"name\":\"Coventry\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":582,\"values\":{\"codes\":\"[\\\"Reading\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"582\",\"name\":\"Reading\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":583,\"values\":{\"codes\":\"[\\\"Aberdeenshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"583\",\"name\":\"Aberdeenshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":584,\"values\":{\"codes\":\"[\\\"Middlesbrough\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"584\",\"name\":\"Middlesbrough\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":585,\"values\":{\"codes\":\"[\\\"Cornwall\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"585\",\"name\":\"Cornwall\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":586,\"values\":{\"codes\":\"[\\\"Suffolk\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"586\",\"name\":\"Suffolk\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":587,\"values\":{\"codes\":\"[\\\"Buckinghamshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"587\",\"name\":\"Buckinghamshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":588,\"values\":{\"codes\":\"[\\\"Bournemouth\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"588\",\"name\":\"Bournemouth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":589,\"values\":{\"codes\":\"[\\\"Wiltshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"589\",\"name\":\"Wiltshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":590,\"values\":{\"codes\":\"[\\\"Norfolk\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"590\",\"name\":\"Norfolk\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":591,\"values\":{\"codes\":\"[\\\"Derbyshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"591\",\"name\":\"Derbyshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":592,\"values\":{\"codes\":\"[\\\"Frederiksberg\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"592\",\"name\":\"Frederiksberg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":593,\"values\":{\"codes\":\"[\\\"Pavlodar\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"593\",\"name\":\"Pavlodar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":594,\"values\":{\"codes\":\"[\\\"Tarragona\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"594\",\"name\":\"Tarragona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":595,\"values\":{\"codes\":\"[\\\"Barcelona\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"595\",\"name\":\"Barcelona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":596,\"values\":{\"codes\":\"[\\\"Las-Palmas\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"596\",\"name\":\"Las-Palmas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":597,\"values\":{\"codes\":\"[\\\"Navarra\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"597\",\"name\":\"Navarra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":598,\"values\":{\"codes\":\"[\\\"Valencia\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"598\",\"name\":\"Valencia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":599,\"values\":{\"codes\":\"[\\\"Girona\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"599\",\"name\":\"Girona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":600,\"values\":{\"codes\":\"[\\\"Guadalajara\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"600\",\"name\":\"Guadalajara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":601,\"values\":{\"codes\":\"[\\\"Leon\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"601\",\"name\":\"Leon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":602,\"values\":{\"codes\":\"[\\\"Pontevedra\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"602\",\"name\":\"Pontevedra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":603,\"values\":{\"codes\":\"[\\\"Granada\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"603\",\"name\":\"Granada\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":604,\"values\":{\"codes\":\"[\\\"Badajoz\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"604\",\"name\":\"Badajoz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":605,\"values\":{\"codes\":\"[\\\"La-Rioja\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"605\",\"name\":\"La-Rioja\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":606,\"values\":{\"codes\":\"[\\\"Balears\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"606\",\"name\":\"Balears\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":607,\"values\":{\"codes\":\"[\\\"Salamanca\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"607\",\"name\":\"Salamanca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":608,\"values\":{\"codes\":\"[\\\"Zaragoza\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"608\",\"name\":\"Zaragoza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":609,\"values\":{\"codes\":\"[\\\"Burgos\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"609\",\"name\":\"Burgos\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":610,\"values\":{\"codes\":\"[\\\"Cantabria\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"610\",\"name\":\"Cantabria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":611,\"values\":{\"codes\":\"[\\\"Huelva\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"611\",\"name\":\"Huelva\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":612,\"values\":{\"codes\":\"[\\\"Cadiz\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"612\",\"name\":\"Cadiz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":613,\"values\":{\"codes\":\"[\\\"Almeria\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"613\",\"name\":\"Almeria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":614,\"values\":{\"codes\":\"[\\\"Malaga\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"614\",\"name\":\"Malaga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":615,\"values\":{\"codes\":\"[\\\"Lleida\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"615\",\"name\":\"Lleida\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":616,\"values\":{\"codes\":\"[\\\"Jaen\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"616\",\"name\":\"Jaen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":617,\"values\":{\"codes\":\"[\\\"Castellon\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"617\",\"name\":\"Castellon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":618,\"values\":{\"codes\":\"[\\\"Ourense\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"618\",\"name\":\"Ourense\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":619,\"values\":{\"codes\":\"[\\\"Valladolid\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"619\",\"name\":\"Valladolid\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":620,\"values\":{\"codes\":\"[\\\"Caceres\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"620\",\"name\":\"Caceres\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":621,\"values\":{\"codes\":\"[\\\"Cordoba\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"621\",\"name\":\"Cordoba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":622,\"values\":{\"codes\":\"[\\\"Asturias\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"622\",\"name\":\"Asturias\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":623,\"values\":{\"codes\":\"[\\\"Oslo\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"623\",\"name\":\"Oslo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":624,\"values\":{\"codes\":\"[\\\"Vest-Agder\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"624\",\"name\":\"Vest-Agder\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":625,\"values\":{\"codes\":\"[\\\"Oppland\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"625\",\"name\":\"Oppland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":626,\"values\":{\"codes\":\"[\\\"Vestfold\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"626\",\"name\":\"Vestfold\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":627,\"values\":{\"codes\":\"[\\\"Hordaland\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"627\",\"name\":\"Hordaland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":628,\"values\":{\"codes\":\"[\\\"Nordland\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"628\",\"name\":\"Nordland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":629,\"values\":{\"codes\":\"[\\\"Sogn-og-Fjordane\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"629\",\"name\":\"Sogn-og-Fjordane\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":630,\"values\":{\"codes\":\"[\\\"stfold\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"630\",\"name\":\"stfold\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":631,\"values\":{\"codes\":\"[\\\"Akershus\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"631\",\"name\":\"Akershus\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":632,\"values\":{\"codes\":\"[\\\"Hedmark\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"632\",\"name\":\"Hedmark\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":633,\"values\":{\"codes\":\"[\\\"Rogaland\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"633\",\"name\":\"Rogaland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":634,\"values\":{\"codes\":\"[\\\"Telemark\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"634\",\"name\":\"Telemark\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":635,\"values\":{\"codes\":\"[\\\"Aust-Agder\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"635\",\"name\":\"Aust-Agder\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":636,\"values\":{\"codes\":\"[\\\"Buskerud\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"636\",\"name\":\"Buskerud\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":637,\"values\":{\"codes\":\"[\\\"Huesca\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"637\",\"name\":\"Huesca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":638,\"values\":{\"codes\":\"[\\\"Zamora\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"638\",\"name\":\"Zamora\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":639,\"values\":{\"codes\":\"[\\\"Cuenca\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"639\",\"name\":\"Cuenca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":640,\"values\":{\"codes\":\"[\\\"Sachsen\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"640\",\"name\":\"Sachsen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":641,\"values\":{\"codes\":\"[\\\"Bayern\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"641\",\"name\":\"Bayern\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":642,\"values\":{\"codes\":\"[\\\"Rheinland-Pfalz\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"642\",\"name\":\"Rheinland-Pfalz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":643,\"values\":{\"codes\":\"[\\\"黑森\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"643\",\"name\":\"黑森\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":644,\"values\":{\"codes\":\"[\\\"Brandenburg\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"644\",\"name\":\"Brandenburg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":645,\"values\":{\"codes\":\"[\\\"Niedersachsen\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"645\",\"name\":\"Niedersachsen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":646,\"values\":{\"codes\":\"[\\\"俄亥俄\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"646\",\"name\":\"俄亥俄\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":647,\"values\":{\"codes\":\"[\\\"俄勒冈\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"647\",\"name\":\"俄勒冈\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":648,\"values\":{\"codes\":\"[\\\"纽约\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"648\",\"name\":\"纽约\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":649,\"values\":{\"codes\":\"[\\\"亚拉巴马\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"649\",\"name\":\"亚拉巴马\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":650,\"values\":{\"codes\":\"[\\\"内华达\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"650\",\"name\":\"内华达\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":651,\"values\":{\"codes\":\"[\\\"德克萨斯\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"651\",\"name\":\"德克萨斯\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":652,\"values\":{\"codes\":\"[\\\"明尼苏达\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"652\",\"name\":\"明尼苏达\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":653,\"values\":{\"codes\":\"[\\\"科罗拉多\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"653\",\"name\":\"科罗拉多\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":654,\"values\":{\"codes\":\"[\\\"伊利诺伊\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"654\",\"name\":\"伊利诺伊\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":655,\"values\":{\"codes\":\"[\\\"佐治亚\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"655\",\"name\":\"佐治亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":656,\"values\":{\"codes\":\"[\\\"印第安纳\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"656\",\"name\":\"印第安纳\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":657,\"values\":{\"codes\":\"[\\\"宾夕法尼亚\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"657\",\"name\":\"宾夕法尼亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":658,\"values\":{\"codes\":\"[\\\"康涅狄格\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"658\",\"name\":\"康涅狄格\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":659,\"values\":{\"codes\":\"[\\\"马萨诸塞\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"659\",\"name\":\"马萨诸塞\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":660,\"values\":{\"codes\":\"[\\\"佛罗里达\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"660\",\"name\":\"佛罗里达\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":661,\"values\":{\"codes\":\"[\\\"密苏里\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"661\",\"name\":\"密苏里\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":662,\"values\":{\"codes\":\"[\\\"北卡罗来纳\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"662\",\"name\":\"北卡罗来纳\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":663,\"values\":{\"codes\":\"[\\\"堪萨斯\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"663\",\"name\":\"堪萨斯\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":664,\"values\":{\"codes\":\"[\\\"密歇根\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"664\",\"name\":\"密歇根\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":665,\"values\":{\"codes\":\"[\\\"肯塔基\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"665\",\"name\":\"肯塔基\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":666,\"values\":{\"codes\":\"[\\\"亚利桑那\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"666\",\"name\":\"亚利桑那\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":667,\"values\":{\"codes\":\"[\\\"犹他\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"667\",\"name\":\"犹他\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":668,\"values\":{\"codes\":\"[\\\"华盛顿特区\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"668\",\"name\":\"华盛顿特区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":669,\"values\":{\"codes\":\"[\\\"俄克拉何马\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"669\",\"name\":\"俄克拉何马\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":670,\"values\":{\"codes\":\"[\\\"安大略\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"670\",\"name\":\"安大略\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":671,\"values\":{\"codes\":\"[\\\"威斯康星\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"671\",\"name\":\"威斯康星\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":672,\"values\":{\"codes\":\"[\\\"佛蒙特\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"672\",\"name\":\"佛蒙特\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":673,\"values\":{\"codes\":\"[\\\"新墨西哥\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"673\",\"name\":\"新墨西哥\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":674,\"values\":{\"codes\":\"[\\\"内布拉斯加\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"674\",\"name\":\"内布拉斯加\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":675,\"values\":{\"codes\":\"[\\\"豪登\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"675\",\"name\":\"豪登\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":676,\"values\":{\"codes\":\"[\\\"Budapest\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"676\",\"name\":\"Budapest\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":677,\"values\":{\"codes\":\"[\\\"阿肯色\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"677\",\"name\":\"阿肯色\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":678,\"values\":{\"codes\":\"[\\\"路易斯安那\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"678\",\"name\":\"路易斯安那\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":679,\"values\":{\"codes\":\"[\\\"罗得岛\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"679\",\"name\":\"罗得岛\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":680,\"values\":{\"codes\":\"[\\\"Sokolov\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"680\",\"name\":\"Sokolov\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":681,\"values\":{\"codes\":\"[\\\"Vaud\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"681\",\"name\":\"Vaud\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":682,\"values\":{\"codes\":\"[\\\"Sverdlovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"682\",\"name\":\"Sverdlovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":683,\"values\":{\"codes\":\"[\\\"Flevoland\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"683\",\"name\":\"Flevoland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":684,\"values\":{\"codes\":\"[\\\"Kamchatskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"684\",\"name\":\"Kamchatskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":685,\"values\":{\"codes\":\"[\\\"Kareliya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"685\",\"name\":\"Kareliya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":686,\"values\":{\"codes\":\"[\\\"Komi\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"686\",\"name\":\"Komi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":687,\"values\":{\"codes\":\"[\\\"Murmanskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"687\",\"name\":\"Murmanskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":688,\"values\":{\"codes\":\"[\\\"Novgorodskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"688\",\"name\":\"Novgorodskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":689,\"values\":{\"codes\":\"[\\\"Chechenskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"689\",\"name\":\"Chechenskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":690,\"values\":{\"codes\":\"[\\\"Orenburgskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"690\",\"name\":\"Orenburgskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":691,\"values\":{\"codes\":\"[\\\"Tatarstan\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"691\",\"name\":\"Tatarstan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":692,\"values\":{\"codes\":\"[\\\"Chuvashskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"692\",\"name\":\"Chuvashskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":693,\"values\":{\"codes\":\"[\\\"Belgorodskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"693\",\"name\":\"Belgorodskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":694,\"values\":{\"codes\":\"[\\\"Amurskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"694\",\"name\":\"Amurskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":695,\"values\":{\"codes\":\"[\\\"Altay\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"695\",\"name\":\"Altay\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":696,\"values\":{\"codes\":\"[\\\"北奥塞梯\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"696\",\"name\":\"北奥塞梯\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":697,\"values\":{\"codes\":\"[\\\"Sunderland\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"697\",\"name\":\"Sunderland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":698,\"values\":{\"codes\":\"[\\\"Trutnov\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"698\",\"name\":\"Trutnov\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":699,\"values\":{\"codes\":\"[\\\"Novosibirskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"699\",\"name\":\"Novosibirskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":700,\"values\":{\"codes\":\"[\\\"Groningen\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"700\",\"name\":\"Groningen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":701,\"values\":{\"codes\":\"[\\\"Pirkanmaa\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"701\",\"name\":\"Pirkanmaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":702,\"values\":{\"codes\":\"[\\\"Ryazanskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"702\",\"name\":\"Ryazanskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":703,\"values\":{\"codes\":\"[\\\"Durham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"703\",\"name\":\"Durham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":704,\"values\":{\"codes\":\"[\\\"Blagoevgrad\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"704\",\"name\":\"Blagoevgrad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":705,\"values\":{\"codes\":\"[\\\"Nograd\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"705\",\"name\":\"Nograd\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":706,\"values\":{\"codes\":\"[\\\"Szekszard\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"706\",\"name\":\"Szekszard\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":707,\"values\":{\"codes\":\"[\\\"Szabolcs-Szatmar-Bereg\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"707\",\"name\":\"Szabolcs-Szatmar-Bereg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":708,\"values\":{\"codes\":\"[\\\"Borsod-Abauj-Zemplen\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"708\",\"name\":\"Borsod-Abauj-Zemplen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":709,\"values\":{\"codes\":\"[\\\"Erd\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"709\",\"name\":\"Erd\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":710,\"values\":{\"codes\":\"[\\\"Drenthe\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"710\",\"name\":\"Drenthe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":711,\"values\":{\"codes\":\"[\\\"Frosinone\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"711\",\"name\":\"Frosinone\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":712,\"values\":{\"codes\":\"[\\\"Porto\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"712\",\"name\":\"Porto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":713,\"values\":{\"codes\":\"[\\\"Braga\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"713\",\"name\":\"Braga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":714,\"values\":{\"codes\":\"[\\\"Vila-Real\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"714\",\"name\":\"Vila-Real\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":715,\"values\":{\"codes\":\"[\\\"Coimbra\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"715\",\"name\":\"Coimbra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":716,\"values\":{\"codes\":\"[\\\"Sakhalinskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"716\",\"name\":\"Sakhalinskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":717,\"values\":{\"codes\":\"[\\\"Dagestan\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"717\",\"name\":\"Dagestan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":718,\"values\":{\"codes\":\"[\\\"Hradec-Kralove\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"718\",\"name\":\"Hradec-Kralove\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":719,\"values\":{\"codes\":\"[\\\"Adygeya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"719\",\"name\":\"Adygeya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":720,\"values\":{\"codes\":\"[\\\"Kymenlaakso\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"720\",\"name\":\"Kymenlaakso\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":721,\"values\":{\"codes\":\"[\\\"Pest\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"721\",\"name\":\"Pest\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":722,\"values\":{\"codes\":\"[\\\"Northumberland\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"722\",\"name\":\"Northumberland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":723,\"values\":{\"codes\":\"[\\\"Tomskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"723\",\"name\":\"Tomskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":724,\"values\":{\"codes\":\"[\\\"Buryatiya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"724\",\"name\":\"Buryatiya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":725,\"values\":{\"codes\":\"[\\\"Catanzaro\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"725\",\"name\":\"Catanzaro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":726,\"values\":{\"codes\":\"[\\\"Roscommon\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"726\",\"name\":\"Roscommon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":727,\"values\":{\"codes\":\"[\\\"Isernia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"727\",\"name\":\"Isernia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":728,\"values\":{\"codes\":\"[\\\"Nuoro\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"728\",\"name\":\"Nuoro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":729,\"values\":{\"codes\":\"[\\\"Vibo-Valentia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"729\",\"name\":\"Vibo-Valentia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":730,\"values\":{\"codes\":\"[\\\"Foggia\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"730\",\"name\":\"Foggia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":731,\"values\":{\"codes\":\"[\\\"Benevento\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"731\",\"name\":\"Benevento\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":732,\"values\":{\"codes\":\"[\\\"Primorskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"732\",\"name\":\"Primorskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":733,\"values\":{\"codes\":\"[\\\"Beroun\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"733\",\"name\":\"Beroun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":734,\"values\":{\"codes\":\"[\\\"Zlin\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"734\",\"name\":\"Zlin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":735,\"values\":{\"codes\":\"[\\\"Luzern\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"735\",\"name\":\"Luzern\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":736,\"values\":{\"codes\":\"[\\\"Burgas\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"736\",\"name\":\"Burgas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":737,\"values\":{\"codes\":\"[\\\"Zuid-Holland\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"737\",\"name\":\"Zuid-Holland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":738,\"values\":{\"codes\":\"[\\\"Limburg\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"738\",\"name\":\"Limburg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":739,\"values\":{\"codes\":\"[\\\"Tipperary\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"739\",\"name\":\"Tipperary\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":740,\"values\":{\"codes\":\"[\\\"Szombathely\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"740\",\"name\":\"Szombathely\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":741,\"values\":{\"codes\":\"[\\\"Dunaujvaros\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"741\",\"name\":\"Dunaujvaros\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":742,\"values\":{\"codes\":\"[\\\"Veszprem\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"742\",\"name\":\"Veszprem\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":743,\"values\":{\"codes\":\"[\\\"Fejer\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"743\",\"name\":\"Fejer\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":744,\"values\":{\"codes\":\"[\\\"Heves\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"744\",\"name\":\"Heves\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":745,\"values\":{\"codes\":\"[\\\"Baranya\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"745\",\"name\":\"Baranya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":746,\"values\":{\"codes\":\"[\\\"Jasz-Nagykun-Szolnok\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"746\",\"name\":\"Jasz-Nagykun-Szolnok\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":747,\"values\":{\"codes\":\"[\\\"Debrecen\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"747\",\"name\":\"Debrecen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":748,\"values\":{\"codes\":\"[\\\"Sopron\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"748\",\"name\":\"Sopron\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":749,\"values\":{\"codes\":\"[\\\"Komarom-Esztergom\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"749\",\"name\":\"Komarom-Esztergom\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":750,\"values\":{\"codes\":\"[\\\"Sakha\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"750\",\"name\":\"Sakha\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":751,\"values\":{\"codes\":\"[\\\"Csongrad\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"751\",\"name\":\"Csongrad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":752,\"values\":{\"codes\":\"[\\\"Vrancea\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"752\",\"name\":\"Vrancea\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":753,\"values\":{\"codes\":\"[\\\"Harjumaa\\\"]\",\"countryId\":\"54\",\"dataId\":\"\",\"id\":\"753\",\"name\":\"Harjumaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":754,\"values\":{\"codes\":\"[\\\"Kirovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"754\",\"name\":\"Kirovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":755,\"values\":{\"codes\":\"[\\\"Overijssel\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"755\",\"name\":\"Overijssel\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":756,\"values\":{\"codes\":\"[\\\"Thessaloniki\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"756\",\"name\":\"Thessaloniki\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":757,\"values\":{\"codes\":\"[\\\"Trieste\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"757\",\"name\":\"Trieste\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":758,\"values\":{\"codes\":\"[\\\"Ceara\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"758\",\"name\":\"Ceara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":759,\"values\":{\"codes\":\"[\\\"Denizli\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"759\",\"name\":\"Denizli\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":760,\"values\":{\"codes\":\"[\\\"Matera\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"760\",\"name\":\"Matera\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":761,\"values\":{\"codes\":\"[\\\"Gaziantep\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"761\",\"name\":\"Gaziantep\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":762,\"values\":{\"codes\":\"[\\\"Mu\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"762\",\"name\":\"Mu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":763,\"values\":{\"codes\":\"[\\\"Viseu\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"763\",\"name\":\"Viseu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":764,\"values\":{\"codes\":\"[\\\"Bekes\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"764\",\"name\":\"Bekes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":765,\"values\":{\"codes\":\"[\\\"Kingston-upon-Hull\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"765\",\"name\":\"Kingston-upon-Hull\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":766,\"values\":{\"codes\":\"[\\\"Syddanmark\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"766\",\"name\":\"Syddanmark\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":767,\"values\":{\"codes\":\"[\\\"Avila\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"767\",\"name\":\"Avila\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":768,\"values\":{\"codes\":\"[\\\"Segovia\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"768\",\"name\":\"Segovia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":769,\"values\":{\"codes\":\"[\\\"Soria\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"769\",\"name\":\"Soria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":770,\"values\":{\"codes\":\"[\\\"Pskovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"770\",\"name\":\"Pskovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":771,\"values\":{\"codes\":\"[\\\"Melnik\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"771\",\"name\":\"Melnik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":772,\"values\":{\"codes\":\"[\\\"纽芬兰与拉布拉多\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"772\",\"name\":\"纽芬兰与拉布拉多\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":773,\"values\":{\"codes\":\"[\\\"Sakarya\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"773\",\"name\":\"Sakarya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":774,\"values\":{\"codes\":\"[\\\"Sibiu\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"774\",\"name\":\"Sibiu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":775,\"values\":{\"codes\":\"[\\\"Tambovskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"775\",\"name\":\"Tambovskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":776,\"values\":{\"codes\":\"[\\\"南卡罗来纳\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"776\",\"name\":\"南卡罗来纳\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":777,\"values\":{\"codes\":\"[\\\"怀俄明\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"777\",\"name\":\"怀俄明\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":778,\"values\":{\"codes\":\"[\\\"夏威夷\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"778\",\"name\":\"夏威夷\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":779,\"values\":{\"codes\":\"[\\\"爱达荷\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"779\",\"name\":\"爱达荷\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":780,\"values\":{\"codes\":\"[\\\"艾伯塔\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"780\",\"name\":\"艾伯塔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":781,\"values\":{\"codes\":\"[\\\"艾奥瓦\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"781\",\"name\":\"艾奥瓦\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":782,\"values\":{\"codes\":\"[\\\"特拉华\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"782\",\"name\":\"特拉华\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":783,\"values\":{\"codes\":\"[\\\"密西西比\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"783\",\"name\":\"密西西比\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":784,\"values\":{\"codes\":\"[\\\"曼尼托巴\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"784\",\"name\":\"曼尼托巴\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":785,\"values\":{\"codes\":\"[\\\"西弗吉尼亚\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"785\",\"name\":\"西弗吉尼亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":786,\"values\":{\"codes\":\"[\\\"新罕布什尔\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"786\",\"name\":\"新罕布什尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":787,\"values\":{\"codes\":\"[\\\"阿拉斯加\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"787\",\"name\":\"阿拉斯加\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":788,\"values\":{\"codes\":\"[\\\"缅因\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"788\",\"name\":\"缅因\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":789,\"values\":{\"codes\":\"[\\\"北达科他\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"789\",\"name\":\"北达科他\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":790,\"values\":{\"codes\":\"[\\\"南达科他\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"790\",\"name\":\"南达科他\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":791,\"values\":{\"codes\":\"[\\\"蒙大拿\\\"]\",\"countryId\":\"166\",\"dataId\":\"\",\"id\":\"791\",\"name\":\"蒙大拿\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":792,\"values\":{\"codes\":\"[\\\"开普敦\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"792\",\"name\":\"开普敦\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":793,\"values\":{\"codes\":\"[\\\"茶荣省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"793\",\"name\":\"茶荣省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":794,\"values\":{\"codes\":\"[\\\"长崎县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"794\",\"name\":\"长崎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":795,\"values\":{\"codes\":\"[\\\"青森县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"795\",\"name\":\"青森县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":796,\"values\":{\"codes\":\"[\\\"山行县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"796\",\"name\":\"山行县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":797,\"values\":{\"codes\":\"[\\\"山梨县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"797\",\"name\":\"山梨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":798,\"values\":{\"codes\":\"[\\\"京都府\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"798\",\"name\":\"京都府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":799,\"values\":{\"codes\":\"[\\\"三重县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"799\",\"name\":\"三重县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":800,\"values\":{\"codes\":\"[\\\"熊本县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"800\",\"name\":\"熊本县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":801,\"values\":{\"codes\":\"[\\\"大分县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"801\",\"name\":\"大分县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":802,\"values\":{\"codes\":\"[\\\"宫崎县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"802\",\"name\":\"宫崎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":803,\"values\":{\"codes\":\"[\\\"鹿儿岛县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"803\",\"name\":\"鹿儿岛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":804,\"values\":{\"codes\":\"[\\\"冲绳县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"804\",\"name\":\"冲绳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":805,\"values\":{\"codes\":\"[\\\"那霸\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"805\",\"name\":\"那霸\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":806,\"values\":{\"codes\":\"[\\\"山口县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"806\",\"name\":\"山口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":807,\"values\":{\"codes\":\"[\\\"岛根县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"807\",\"name\":\"岛根县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":808,\"values\":{\"codes\":\"[\\\"鸟取县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"808\",\"name\":\"鸟取县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":809,\"values\":{\"codes\":\"[\\\"爱媛县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"809\",\"name\":\"爱媛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":810,\"values\":{\"codes\":\"[\\\"松山\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"810\",\"name\":\"松山\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":811,\"values\":{\"codes\":\"[\\\"德岛县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"811\",\"name\":\"德岛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":812,\"values\":{\"codes\":\"[\\\"高知县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"812\",\"name\":\"高知县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":813,\"values\":{\"codes\":\"[\\\"和歌山县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"813\",\"name\":\"和歌山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":814,\"values\":{\"codes\":\"[\\\"滋贺县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"814\",\"name\":\"滋贺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":815,\"values\":{\"codes\":\"[\\\"奈良县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"815\",\"name\":\"奈良县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":816,\"values\":{\"codes\":\"[\\\"福井县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"816\",\"name\":\"福井县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":817,\"values\":{\"codes\":\"[\\\"石川县\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"817\",\"name\":\"石川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":818,\"values\":{\"codes\":\"[\\\"贾坎德\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"818\",\"name\":\"贾坎德\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":819,\"values\":{\"codes\":\"[\\\"横滨\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"819\",\"name\":\"横滨\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":820,\"values\":{\"codes\":\"[\\\"本地治里\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"820\",\"name\":\"本地治里\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":821,\"values\":{\"codes\":\"[\\\"北阿坎德\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"821\",\"name\":\"北阿坎德\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":822,\"values\":{\"codes\":\"[\\\"西爪哇\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"822\",\"name\":\"西爪哇\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":823,\"values\":{\"codes\":\"[\\\"Wellington\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"823\",\"name\":\"Wellington\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":824,\"values\":{\"codes\":\"[\\\"果阿\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"824\",\"name\":\"果阿\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":825,\"values\":{\"codes\":\"[\\\"曼尼普尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"825\",\"name\":\"曼尼普尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":826,\"values\":{\"codes\":\"[\\\"奥里萨\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"826\",\"name\":\"奥里萨\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":827,\"values\":{\"codes\":\"[\\\"薄寮省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"827\",\"name\":\"薄寮省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":828,\"values\":{\"codes\":\"[\\\"朔庄省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"828\",\"name\":\"朔庄省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":829,\"values\":{\"codes\":\"[\\\"平福省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"829\",\"name\":\"平福省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":830,\"values\":{\"codes\":\"[\\\"太平省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"830\",\"name\":\"太平省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":831,\"values\":{\"codes\":\"[\\\"高平省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"831\",\"name\":\"高平省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":832,\"values\":{\"codes\":\"[\\\"北乾省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"832\",\"name\":\"北乾省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":833,\"values\":{\"codes\":\"[\\\"兴安省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"833\",\"name\":\"兴安省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":834,\"values\":{\"codes\":\"[\\\"山萝省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"834\",\"name\":\"山萝省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":835,\"values\":{\"codes\":\"[\\\"义安省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"835\",\"name\":\"义安省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":836,\"values\":{\"codes\":\"[\\\"奠边省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"836\",\"name\":\"奠边省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":837,\"values\":{\"codes\":\"[\\\"多农省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"837\",\"name\":\"多农省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":838,\"values\":{\"codes\":\"[\\\"河江省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"838\",\"name\":\"河江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":839,\"values\":{\"codes\":\"[\\\"莱洲省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"839\",\"name\":\"莱洲省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":840,\"values\":{\"codes\":\"[\\\"哈南省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"840\",\"name\":\"哈南省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":841,\"values\":{\"codes\":\"[\\\"后江省\\\"]\",\"countryId\":\"7\",\"dataId\":\"\",\"id\":\"841\",\"name\":\"后江省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":842,\"values\":{\"codes\":\"[\\\"佛丕府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"842\",\"name\":\"佛丕府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":843,\"values\":{\"codes\":\"[\\\"Lambeth\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"843\",\"name\":\"Lambeth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":844,\"values\":{\"codes\":\"[\\\"Islington\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"844\",\"name\":\"Islington\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":845,\"values\":{\"codes\":\"[\\\"Camden\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"845\",\"name\":\"Camden\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":846,\"values\":{\"codes\":\"[\\\"Kensington-and-Chelsea\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"846\",\"name\":\"Kensington-and-Chelsea\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":847,\"values\":{\"codes\":\"[\\\"Windsor-and-Maidenhead\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"847\",\"name\":\"Windsor-and-Maidenhead\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":848,\"values\":{\"codes\":\"[\\\"Hillingdon\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"848\",\"name\":\"Hillingdon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":849,\"values\":{\"codes\":\"[\\\"Hackney\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"849\",\"name\":\"Hackney\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":850,\"values\":{\"codes\":\"[\\\"Sutton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"850\",\"name\":\"Sutton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":851,\"values\":{\"codes\":\"[\\\"Thurrock\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"851\",\"name\":\"Thurrock\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":852,\"values\":{\"codes\":\"[\\\"Milton-Keynes\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"852\",\"name\":\"Milton-Keynes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":853,\"values\":{\"codes\":\"[\\\"Bath-and-North-East-Somerset\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"853\",\"name\":\"Bath-and-North-East-Somerset\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":854,\"values\":{\"codes\":\"[\\\"Luton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"854\",\"name\":\"Luton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":855,\"values\":{\"codes\":\"[\\\"澳大利亚首都领地\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"855\",\"name\":\"澳大利亚首都领地\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":856,\"values\":{\"codes\":\"[\\\"Atlantico\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"856\",\"name\":\"Atlantico\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":857,\"values\":{\"codes\":\"[\\\"Distrito-Federal\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"857\",\"name\":\"Distrito-Federal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":858,\"values\":{\"codes\":\"[\\\"新斯科舍\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"858\",\"name\":\"新斯科舍\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":859,\"values\":{\"codes\":\"[\\\"Chihuahua\\\"]\",\"countryId\":\"167\",\"dataId\":\"\",\"id\":\"859\",\"name\":\"Chihuahua\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":860,\"values\":{\"codes\":\"[\\\"东爪哇\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"860\",\"name\":\"东爪哇\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":861,\"values\":{\"codes\":\"[\\\"廖内群岛\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"861\",\"name\":\"廖内群岛\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":862,\"values\":{\"codes\":\"[\\\"萨斯喀彻温\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"862\",\"name\":\"萨斯喀彻温\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":863,\"values\":{\"codes\":\"[\\\"新不伦瑞克\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"863\",\"name\":\"新不伦瑞克\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":864,\"values\":{\"codes\":\"[\\\"Edirne\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"864\",\"name\":\"Edirne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":865,\"values\":{\"codes\":\"[\\\"Kocaeli\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"865\",\"name\":\"Kocaeli\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":866,\"values\":{\"codes\":\"[\\\"Samsun\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"866\",\"name\":\"Samsun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":867,\"values\":{\"codes\":\"[\\\"Bolu\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"867\",\"name\":\"Bolu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":868,\"values\":{\"codes\":\"[\\\"Zonguldak\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"868\",\"name\":\"Zonguldak\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":869,\"values\":{\"codes\":\"[\\\"爱德华王子岛\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"869\",\"name\":\"爱德华王子岛\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":870,\"values\":{\"codes\":\"[\\\"西巴布亚\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"870\",\"name\":\"西巴布亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":871,\"values\":{\"codes\":\"[\\\"巴厘省\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"871\",\"name\":\"巴厘省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":872,\"values\":{\"codes\":\"[\\\"那加兰\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"872\",\"name\":\"那加兰\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":873,\"values\":{\"codes\":\"[\\\"米佐拉姆\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"873\",\"name\":\"米佐拉姆\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":874,\"values\":{\"codes\":\"[\\\"名古屋\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"874\",\"name\":\"名古屋\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":875,\"values\":{\"codes\":\"[\\\"津\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"875\",\"name\":\"津\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":876,\"values\":{\"codes\":\"[\\\"川越\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"876\",\"name\":\"川越\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":877,\"values\":{\"codes\":\"[\\\"Bay-of-Plenty\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"877\",\"name\":\"Bay-of-Plenty\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":878,\"values\":{\"codes\":\"[\\\"南达沃省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"878\",\"name\":\"南达沃省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":879,\"values\":{\"codes\":\"[\\\"黎刹省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"879\",\"name\":\"黎刹省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":880,\"values\":{\"codes\":\"[\\\"南甘马粦省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"880\",\"name\":\"南甘马粦省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":881,\"values\":{\"codes\":\"[\\\"Canterbury\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"881\",\"name\":\"Canterbury\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":882,\"values\":{\"codes\":\"[\\\"奎松省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"882\",\"name\":\"奎松省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":883,\"values\":{\"codes\":\"[\\\"廖内省\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"883\",\"name\":\"廖内省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":884,\"values\":{\"codes\":\"[\\\"卡加烟省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"884\",\"name\":\"卡加烟省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":885,\"values\":{\"codes\":\"[\\\"邦阿西楠省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"885\",\"name\":\"邦阿西楠省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":886,\"values\":{\"codes\":\"[\\\"西加里曼丹\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"886\",\"name\":\"西加里曼丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":887,\"values\":{\"codes\":\"[\\\"董里府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"887\",\"name\":\"董里府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":888,\"values\":{\"codes\":\"[\\\"中爪哇\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"888\",\"name\":\"中爪哇\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":889,\"values\":{\"codes\":\"[\\\"北榄府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"889\",\"name\":\"北榄府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":890,\"values\":{\"codes\":\"[\\\"Waikato\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"890\",\"name\":\"Waikato\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":891,\"values\":{\"codes\":\"[\\\"Northland\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"891\",\"name\":\"Northland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":892,\"values\":{\"codes\":\"[\\\"Ticino\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"892\",\"name\":\"Ticino\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":893,\"values\":{\"codes\":\"[\\\"Lugo\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"893\",\"name\":\"Lugo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":894,\"values\":{\"codes\":\"[\\\"Prahova\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"894\",\"name\":\"Prahova\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":895,\"values\":{\"codes\":\"[\\\"Harghita\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"895\",\"name\":\"Harghita\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":896,\"values\":{\"codes\":\"[\\\"Suceava\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"896\",\"name\":\"Suceava\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":897,\"values\":{\"codes\":\"[\\\"Mayo\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"897\",\"name\":\"Mayo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":898,\"values\":{\"codes\":\"[\\\"Aargau\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"898\",\"name\":\"Aargau\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":899,\"values\":{\"codes\":\"[\\\"Meath\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"899\",\"name\":\"Meath\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":900,\"values\":{\"codes\":\"[\\\"Targovishte\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"900\",\"name\":\"Targovishte\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":901,\"values\":{\"codes\":\"[\\\"Ruse\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"901\",\"name\":\"Ruse\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":902,\"values\":{\"codes\":\"[\\\"Sliven\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"902\",\"name\":\"Sliven\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":903,\"values\":{\"codes\":\"[\\\"Varna\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"903\",\"name\":\"Varna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":904,\"values\":{\"codes\":\"[\\\"Cluj\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"904\",\"name\":\"Cluj\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":905,\"values\":{\"codes\":\"[\\\"Mecklenburg-Vorpommern\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"905\",\"name\":\"Mecklenburg-Vorpommern\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":906,\"values\":{\"codes\":\"[\\\"Bremen\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"906\",\"name\":\"Bremen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":907,\"values\":{\"codes\":\"[\\\"Zala\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"907\",\"name\":\"Zala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":908,\"values\":{\"codes\":\"[\\\"Zachodniopomorskie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"908\",\"name\":\"Zachodniopomorskie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":909,\"values\":{\"codes\":\"[\\\"Nymburk\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"909\",\"name\":\"Nymburk\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":910,\"values\":{\"codes\":\"[\\\"Brno-venkov\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"910\",\"name\":\"Brno-venkov\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":911,\"values\":{\"codes\":\"[\\\"Olomouc\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"911\",\"name\":\"Olomouc\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":912,\"values\":{\"codes\":\"[\\\"Ostrava-mesto\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"912\",\"name\":\"Ostrava-mesto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":913,\"values\":{\"codes\":\"[\\\"Karlovy-Vary\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"913\",\"name\":\"Karlovy-Vary\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":914,\"values\":{\"codes\":\"[\\\"Plzen-mesto\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"914\",\"name\":\"Plzen-mesto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":915,\"values\":{\"codes\":\"[\\\"Opava\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"915\",\"name\":\"Opava\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":916,\"values\":{\"codes\":\"[\\\"Jihlava\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"916\",\"name\":\"Jihlava\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":917,\"values\":{\"codes\":\"[\\\"Pardubice\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"917\",\"name\":\"Pardubice\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":918,\"values\":{\"codes\":\"[\\\"Jablonec-nad-Nisou\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"918\",\"name\":\"Jablonec-nad-Nisou\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":919,\"values\":{\"codes\":\"[\\\"Praha-zapad\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"919\",\"name\":\"Praha-zapad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":920,\"values\":{\"codes\":\"[\\\"Penzenskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"920\",\"name\":\"Penzenskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":921,\"values\":{\"codes\":\"[\\\"Smolyan\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"921\",\"name\":\"Smolyan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":922,\"values\":{\"codes\":\"[\\\"Podlaskie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"922\",\"name\":\"Podlaskie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":923,\"values\":{\"codes\":\"[\\\"Troms\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"923\",\"name\":\"Troms\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":924,\"values\":{\"codes\":\"[\\\"Bekescsaba\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"924\",\"name\":\"Bekescsaba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":925,\"values\":{\"codes\":\"[\\\"Kaposvar\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"925\",\"name\":\"Kaposvar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":926,\"values\":{\"codes\":\"[\\\"Zalaegerszeg\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"926\",\"name\":\"Zalaegerszeg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":927,\"values\":{\"codes\":\"[\\\"Hajdu-Bihar\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"927\",\"name\":\"Hajdu-Bihar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":928,\"values\":{\"codes\":\"[\\\"Jesenik\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"928\",\"name\":\"Jesenik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":929,\"values\":{\"codes\":\"[\\\"Leningradskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"929\",\"name\":\"Leningradskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":930,\"values\":{\"codes\":\"[\\\"泛贝加尔\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"930\",\"name\":\"泛贝加尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":931,\"values\":{\"codes\":\"[\\\"Kurganskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"931\",\"name\":\"Kurganskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":932,\"values\":{\"codes\":\"[\\\"Zeeland\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"932\",\"name\":\"Zeeland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":933,\"values\":{\"codes\":\"[\\\"Konya\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"933\",\"name\":\"Konya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":934,\"values\":{\"codes\":\"[\\\"Rize\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"934\",\"name\":\"Rize\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":935,\"values\":{\"codes\":\"[\\\"Hatay\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"935\",\"name\":\"Hatay\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":936,\"values\":{\"codes\":\"[\\\"Yozgat\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"936\",\"name\":\"Yozgat\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":937,\"values\":{\"codes\":\"[\\\"Mersin\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"937\",\"name\":\"Mersin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":938,\"values\":{\"codes\":\"[\\\"Kahramanmara\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"938\",\"name\":\"Kahramanmara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":939,\"values\":{\"codes\":\"[\\\"Adana\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"939\",\"name\":\"Adana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":940,\"values\":{\"codes\":\"[\\\"Tekirda\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"940\",\"name\":\"Tekirda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":941,\"values\":{\"codes\":\"[\\\"Kayseri\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"941\",\"name\":\"Kayseri\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":942,\"values\":{\"codes\":\"[\\\"Ordu\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"942\",\"name\":\"Ordu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":943,\"values\":{\"codes\":\"[\\\"Manisa\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"943\",\"name\":\"Manisa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":944,\"values\":{\"codes\":\"[\\\"Aksaray\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"944\",\"name\":\"Aksaray\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":945,\"values\":{\"codes\":\"[\\\"Sinop\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"945\",\"name\":\"Sinop\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":946,\"values\":{\"codes\":\"[\\\"Sondrio\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"946\",\"name\":\"Sondrio\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":947,\"values\":{\"codes\":\"[\\\"Bern\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"947\",\"name\":\"Bern\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":948,\"values\":{\"codes\":\"[\\\"Thurgau\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"948\",\"name\":\"Thurgau\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":949,\"values\":{\"codes\":\"[\\\"Schwyz\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"949\",\"name\":\"Schwyz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":950,\"values\":{\"codes\":\"[\\\"Solothurn\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"950\",\"name\":\"Solothurn\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":951,\"values\":{\"codes\":\"[\\\"Basel-Landschaft\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"951\",\"name\":\"Basel-Landschaft\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":952,\"values\":{\"codes\":\"[\\\"Basel-Stadt\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"952\",\"name\":\"Basel-Stadt\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":953,\"values\":{\"codes\":\"[\\\"Jura\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"953\",\"name\":\"Jura\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":954,\"values\":{\"codes\":\"[\\\"Obwalden\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"954\",\"name\":\"Obwalden\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":955,\"values\":{\"codes\":\"[\\\"Uri\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"955\",\"name\":\"Uri\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":956,\"values\":{\"codes\":\"[\\\"Louth\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"956\",\"name\":\"Louth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":957,\"values\":{\"codes\":\"[\\\"Leitrim\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"957\",\"name\":\"Leitrim\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":958,\"values\":{\"codes\":\"[\\\"Udmurtskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"958\",\"name\":\"Udmurtskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":959,\"values\":{\"codes\":\"[\\\"犹太州\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"959\",\"name\":\"犹太州\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":960,\"values\":{\"codes\":\"[\\\"Mordoviya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"960\",\"name\":\"Mordoviya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":961,\"values\":{\"codes\":\"[\\\"Mariy-El\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"961\",\"name\":\"Mariy-El\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":962,\"values\":{\"codes\":\"[\\\"Kalmykiya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"962\",\"name\":\"Kalmykiya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":963,\"values\":{\"codes\":\"[\\\"Amasya\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"963\",\"name\":\"Amasya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":964,\"values\":{\"codes\":\"[\\\"Erzurum\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"964\",\"name\":\"Erzurum\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":965,\"values\":{\"codes\":\"[\\\"Hodonin\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"965\",\"name\":\"Hodonin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":966,\"values\":{\"codes\":\"[\\\"Waterford\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"966\",\"name\":\"Waterford\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":967,\"values\":{\"codes\":\"[\\\"Southampton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"967\",\"name\":\"Southampton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":968,\"values\":{\"codes\":\"[\\\"Nottingham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"968\",\"name\":\"Nottingham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":969,\"values\":{\"codes\":\"[\\\"Rochdale\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"969\",\"name\":\"Rochdale\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":970,\"values\":{\"codes\":\"[\\\"Blackburn-with-Darwen\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"970\",\"name\":\"Blackburn-with-Darwen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":971,\"values\":{\"codes\":\"[\\\"York\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"971\",\"name\":\"York\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":972,\"values\":{\"codes\":\"[\\\"Westminster\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"972\",\"name\":\"Westminster\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":973,\"values\":{\"codes\":\"[\\\"Bolton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"973\",\"name\":\"Bolton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":974,\"values\":{\"codes\":\"[\\\"Denbighshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"974\",\"name\":\"Denbighshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":975,\"values\":{\"codes\":\"[\\\"Fife\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"975\",\"name\":\"Fife\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":976,\"values\":{\"codes\":\"[\\\"Cheshire-East\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"976\",\"name\":\"Cheshire-East\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":977,\"values\":{\"codes\":\"[\\\"Derby\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"977\",\"name\":\"Derby\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":978,\"values\":{\"codes\":\"[\\\"Southwark\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"978\",\"name\":\"Southwark\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":979,\"values\":{\"codes\":\"[\\\"Leicester\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"979\",\"name\":\"Leicester\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":980,\"values\":{\"codes\":\"[\\\"Bradford\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"980\",\"name\":\"Bradford\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":981,\"values\":{\"codes\":\"[\\\"Oldham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"981\",\"name\":\"Oldham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":982,\"values\":{\"codes\":\"[\\\"Kirklees\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"982\",\"name\":\"Kirklees\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":983,\"values\":{\"codes\":\"[\\\"West-Sussex\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"983\",\"name\":\"West-Sussex\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":984,\"values\":{\"codes\":\"[\\\"Barnet\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"984\",\"name\":\"Barnet\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":985,\"values\":{\"codes\":\"[\\\"Wandsworth\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"985\",\"name\":\"Wandsworth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":986,\"values\":{\"codes\":\"[\\\"Aberdeen\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"986\",\"name\":\"Aberdeen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":987,\"values\":{\"codes\":\"[\\\"Perth-and-Kinross\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"987\",\"name\":\"Perth-and-Kinross\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":988,\"values\":{\"codes\":\"[\\\"Salford\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"988\",\"name\":\"Salford\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":989,\"values\":{\"codes\":\"[\\\"Sefton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"989\",\"name\":\"Sefton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":990,\"values\":{\"codes\":\"[\\\"Barnsley\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"990\",\"name\":\"Barnsley\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":991,\"values\":{\"codes\":\"[\\\"Harrow\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"991\",\"name\":\"Harrow\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":992,\"values\":{\"codes\":\"[\\\"Enfield\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"992\",\"name\":\"Enfield\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":993,\"values\":{\"codes\":\"[\\\"Havering\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"993\",\"name\":\"Havering\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":994,\"values\":{\"codes\":\"[\\\"Poole\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"994\",\"name\":\"Poole\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":995,\"values\":{\"codes\":\"[\\\"Warwickshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"995\",\"name\":\"Warwickshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":996,\"values\":{\"codes\":\"[\\\"South-Ayrshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"996\",\"name\":\"South-Ayrshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":997,\"values\":{\"codes\":\"[\\\"Hammersmith-and-Fulham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"997\",\"name\":\"Hammersmith-and-Fulham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":998,\"values\":{\"codes\":\"[\\\"Plymouth\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"998\",\"name\":\"Plymouth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":999,\"values\":{\"codes\":\"[\\\"Brent\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"999\",\"name\":\"Brent\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1000,\"values\":{\"codes\":\"[\\\"Greenwich\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1000\",\"name\":\"Greenwich\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1001,\"values\":{\"codes\":\"[\\\"Waltham-Forest\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1001\",\"name\":\"Waltham-Forest\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1002,\"values\":{\"codes\":\"[\\\"Kingston-upon-Thames\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1002\",\"name\":\"Kingston-upon-Thames\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1003,\"values\":{\"codes\":\"[\\\"Bromley\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1003\",\"name\":\"Bromley\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1004,\"values\":{\"codes\":\"[\\\"Ealing\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1004\",\"name\":\"Ealing\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1005,\"values\":{\"codes\":\"[\\\"North-Ayrshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1005\",\"name\":\"North-Ayrshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1006,\"values\":{\"codes\":\"[\\\"Stirling\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1006\",\"name\":\"Stirling\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1007,\"values\":{\"codes\":\"[\\\"Portsmouth\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1007\",\"name\":\"Portsmouth\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1008,\"values\":{\"codes\":\"[\\\"Brighton-and-Hove\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1008\",\"name\":\"Brighton-and-Hove\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1009,\"values\":{\"codes\":\"[\\\"Warrington\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1009\",\"name\":\"Warrington\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1010,\"values\":{\"codes\":\"[\\\"Flintshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1010\",\"name\":\"Flintshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1011,\"values\":{\"codes\":\"[\\\"Tower-Hamlets\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1011\",\"name\":\"Tower-Hamlets\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1012,\"values\":{\"codes\":\"[\\\"Hounslow\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1012\",\"name\":\"Hounslow\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1013,\"values\":{\"codes\":\"[\\\"Redbridge\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1013\",\"name\":\"Redbridge\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1014,\"values\":{\"codes\":\"[\\\"Pleven\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1014\",\"name\":\"Pleven\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1015,\"values\":{\"codes\":\"[\\\"Salzburg\\\"]\",\"countryId\":\"66\",\"dataId\":\"\",\"id\":\"1015\",\"name\":\"Salzburg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1016,\"values\":{\"codes\":\"[\\\"Carlow\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1016\",\"name\":\"Carlow\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1017,\"values\":{\"codes\":\"[\\\"Swindon\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1017\",\"name\":\"Swindon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1018,\"values\":{\"codes\":\"[\\\"Udine\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1018\",\"name\":\"Udine\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1019,\"values\":{\"codes\":\"[\\\"八王子\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1019\",\"name\":\"八王子\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1020,\"values\":{\"codes\":\"[\\\"东加里曼丹\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1020\",\"name\":\"东加里曼丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1021,\"values\":{\"codes\":\"[\\\"南加里曼丹\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1021\",\"name\":\"南加里曼丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1022,\"values\":{\"codes\":\"[\\\"南苏拉威西\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1022\",\"name\":\"南苏拉威西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1023,\"values\":{\"codes\":\"[\\\"北苏门答腊\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1023\",\"name\":\"北苏门答腊\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1024,\"values\":{\"codes\":\"[\\\"西苏门答腊\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1024\",\"name\":\"西苏门答腊\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1025,\"values\":{\"codes\":\"[\\\"日惹特区\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1025\",\"name\":\"日惹特区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1026,\"values\":{\"codes\":\"[\\\"南苏门答腊\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1026\",\"name\":\"南苏门答腊\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1027,\"values\":{\"codes\":\"[\\\"楠榜省\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1027\",\"name\":\"楠榜省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1028,\"values\":{\"codes\":\"[\\\"占碑省\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1028\",\"name\":\"占碑省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1029,\"values\":{\"codes\":\"[\\\"马鲁古\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1029\",\"name\":\"马鲁古\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1030,\"values\":{\"codes\":\"[\\\"中加里曼丹\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1030\",\"name\":\"中加里曼丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1031,\"values\":{\"codes\":\"[\\\"中苏拉威西\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1031\",\"name\":\"中苏拉威西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1032,\"values\":{\"codes\":\"[\\\"西努沙登加拉\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1032\",\"name\":\"西努沙登加拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1033,\"values\":{\"codes\":\"[\\\"北苏拉威西\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1033\",\"name\":\"北苏拉威西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1034,\"values\":{\"codes\":\"[\\\"北加里曼丹\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1034\",\"name\":\"北加里曼丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1035,\"values\":{\"codes\":\"[\\\"东努沙登加拉\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1035\",\"name\":\"东努沙登加拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1036,\"values\":{\"codes\":\"[\\\"巴布亚\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1036\",\"name\":\"巴布亚\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1037,\"values\":{\"codes\":\"[\\\"万丹\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1037\",\"name\":\"万丹\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1038,\"values\":{\"codes\":\"[\\\"哥伦打洛\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1038\",\"name\":\"哥伦打洛\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1039,\"values\":{\"codes\":\"[\\\"北马鲁古\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1039\",\"name\":\"北马鲁古\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1040,\"values\":{\"codes\":\"[\\\"Pohjois-Pohjanmaa\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1040\",\"name\":\"Pohjois-Pohjanmaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1041,\"values\":{\"codes\":\"[\\\"Satakunta\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1041\",\"name\":\"Satakunta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1042,\"values\":{\"codes\":\"[\\\"Astana\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"1042\",\"name\":\"Astana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1043,\"values\":{\"codes\":\"[\\\"Aveiro\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1043\",\"name\":\"Aveiro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1044,\"values\":{\"codes\":\"[\\\"Tulskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1044\",\"name\":\"Tulskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1045,\"values\":{\"codes\":\"[\\\"Kabardino-Balkarskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1045\",\"name\":\"Kabardino-Balkarskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1046,\"values\":{\"codes\":\"[\\\"Kujawsko-pomorskie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"1046\",\"name\":\"Kujawsko-pomorskie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1047,\"values\":{\"codes\":\"[\\\"Highland\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1047\",\"name\":\"Highland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1048,\"values\":{\"codes\":\"[\\\"Wexford\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1048\",\"name\":\"Wexford\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1049,\"values\":{\"codes\":\"[\\\"Dorset\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1049\",\"name\":\"Dorset\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1050,\"values\":{\"codes\":\"[\\\"Noord-Brabant\\\"]\",\"countryId\":\"71\",\"dataId\":\"\",\"id\":\"1050\",\"name\":\"Noord-Brabant\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1051,\"values\":{\"codes\":\"[\\\"Vlaams-Brabant\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1051\",\"name\":\"Vlaams-Brabant\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1052,\"values\":{\"codes\":\"[\\\"Paola\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1052\",\"name\":\"Paola\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1053,\"values\":{\"codes\":\"[\\\"Qormi\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1053\",\"name\":\"Qormi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1054,\"values\":{\"codes\":\"[\\\"Birkirkara\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1054\",\"name\":\"Birkirkara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1055,\"values\":{\"codes\":\"[\\\"Fgura\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1055\",\"name\":\"Fgura\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1056,\"values\":{\"codes\":\"[\\\"Sliema\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1056\",\"name\":\"Sliema\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1057,\"values\":{\"codes\":\"[\\\"Gzira\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1057\",\"name\":\"Gzira\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1058,\"values\":{\"codes\":\"[\\\"Attard\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1058\",\"name\":\"Attard\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1059,\"values\":{\"codes\":\"[\\\"Saint-John\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1059\",\"name\":\"Saint-John\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1060,\"values\":{\"codes\":\"[\\\"Tarxien\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1060\",\"name\":\"Tarxien\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1061,\"values\":{\"codes\":\"[\\\"Luqa\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1061\",\"name\":\"Luqa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1062,\"values\":{\"codes\":\"[\\\"Pembroke\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1062\",\"name\":\"Pembroke\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1063,\"values\":{\"codes\":\"[\\\"Birgu\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1063\",\"name\":\"Birgu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1064,\"values\":{\"codes\":\"[\\\"Marsa\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1064\",\"name\":\"Marsa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1065,\"values\":{\"codes\":\"[\\\"Balzan\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1065\",\"name\":\"Balzan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1066,\"values\":{\"codes\":\"[\\\"Pieta\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1066\",\"name\":\"Pieta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1067,\"values\":{\"codes\":\"[\\\"Valletta\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1067\",\"name\":\"Valletta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1068,\"values\":{\"codes\":\"[\\\"Nordjylland\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"1068\",\"name\":\"Nordjylland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1069,\"values\":{\"codes\":\"[\\\"Rafah\\\"]\",\"countryId\":\"36\",\"dataId\":\"\",\"id\":\"1069\",\"name\":\"Rafah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1070,\"values\":{\"codes\":\"[\\\"Viterbo\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1070\",\"name\":\"Viterbo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1071,\"values\":{\"codes\":\"[\\\"Kolin\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1071\",\"name\":\"Kolin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1072,\"values\":{\"codes\":\"[\\\"Roskilde\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"1072\",\"name\":\"Roskilde\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1073,\"values\":{\"codes\":\"[\\\"Geneve\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"1073\",\"name\":\"Geneve\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1074,\"values\":{\"codes\":\"[\\\"Yangon\\\"]\",\"countryId\":\"10\",\"dataId\":\"\",\"id\":\"1074\",\"name\":\"Yangon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1075,\"values\":{\"codes\":\"[\\\"Rakhine\\\"]\",\"countryId\":\"10\",\"dataId\":\"\",\"id\":\"1075\",\"name\":\"Rakhine\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1076,\"values\":{\"codes\":\"[\\\"Sagaing\\\"]\",\"countryId\":\"10\",\"dataId\":\"\",\"id\":\"1076\",\"name\":\"Sagaing\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1077,\"values\":{\"codes\":\"[\\\"Punjab\\\"]\",\"countryId\":\"21\",\"dataId\":\"\",\"id\":\"1077\",\"name\":\"Punjab\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1078,\"values\":{\"codes\":\"[\\\"Sindh\\\"]\",\"countryId\":\"21\",\"dataId\":\"\",\"id\":\"1078\",\"name\":\"Sindh\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1079,\"values\":{\"codes\":\"[\\\"Enna\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1079\",\"name\":\"Enna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1080,\"values\":{\"codes\":\"[\\\"Dobrich\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1080\",\"name\":\"Dobrich\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1081,\"values\":{\"codes\":\"[\\\"Gabrovo\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1081\",\"name\":\"Gabrovo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1082,\"values\":{\"codes\":\"[\\\"Stara-Zagora\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1082\",\"name\":\"Stara-Zagora\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1083,\"values\":{\"codes\":\"[\\\"Kauno\\\"]\",\"countryId\":\"56\",\"dataId\":\"\",\"id\":\"1083\",\"name\":\"Kauno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1084,\"values\":{\"codes\":\"[\\\"利雅得地区\\\"]\",\"countryId\":\"37\",\"dataId\":\"\",\"id\":\"1084\",\"name\":\"利雅得地区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1085,\"values\":{\"codes\":\"[\\\"Eger\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1085\",\"name\":\"Eger\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1086,\"values\":{\"codes\":\"[\\\"Kilkenny\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1086\",\"name\":\"Kilkenny\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1087,\"values\":{\"codes\":\"[\\\"Khanty-Mansiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1087\",\"name\":\"Khanty-Mansiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1088,\"values\":{\"codes\":\"[\\\"Ash-Shamal\\\"]\",\"countryId\":\"39\",\"dataId\":\"\",\"id\":\"1088\",\"name\":\"Ash-Shamal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1089,\"values\":{\"codes\":\"[\\\"Galway\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1089\",\"name\":\"Galway\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1090,\"values\":{\"codes\":\"[\\\"Sachsen-Anhalt\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"1090\",\"name\":\"Sachsen-Anhalt\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1091,\"values\":{\"codes\":\"[\\\"Oristano\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1091\",\"name\":\"Oristano\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1092,\"values\":{\"codes\":\"[\\\"An-Najaf\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"1092\",\"name\":\"An-Najaf\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1093,\"values\":{\"codes\":\"[\\\"Karbala\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"1093\",\"name\":\"Karbala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1094,\"values\":{\"codes\":\"[\\\"Babil\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"1094\",\"name\":\"Babil\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1095,\"values\":{\"codes\":\"[\\\"Maysan\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"1095\",\"name\":\"Maysan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1096,\"values\":{\"codes\":\"[\\\"Jalisco\\\"]\",\"countryId\":\"167\",\"dataId\":\"\",\"id\":\"1096\",\"name\":\"Jalisco\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1097,\"values\":{\"codes\":\"[\\\"Antananarivo\\\"]\",\"countryId\":\"136\",\"dataId\":\"\",\"id\":\"1097\",\"name\":\"Antananarivo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1098,\"values\":{\"codes\":\"[\\\"Denguele\\\"]\",\"countryId\":\"120\",\"dataId\":\"\",\"id\":\"1098\",\"name\":\"Denguele\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1099,\"values\":{\"codes\":\"[\\\"Mahajanga\\\"]\",\"countryId\":\"136\",\"dataId\":\"\",\"id\":\"1099\",\"name\":\"Mahajanga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1100,\"values\":{\"codes\":\"[\\\"Copperbelt\\\"]\",\"countryId\":\"126\",\"dataId\":\"\",\"id\":\"1100\",\"name\":\"Copperbelt\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1101,\"values\":{\"codes\":\"[\\\"Blantyre\\\"]\",\"countryId\":\"129\",\"dataId\":\"\",\"id\":\"1101\",\"name\":\"Blantyre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1102,\"values\":{\"codes\":\"[\\\"KwaZulu-Natal\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1102\",\"name\":\"KwaZulu-Natal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1103,\"values\":{\"codes\":\"[\\\"Coast\\\"]\",\"countryId\":\"104\",\"dataId\":\"\",\"id\":\"1103\",\"name\":\"Coast\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1104,\"values\":{\"codes\":\"[\\\"Lagunes\\\"]\",\"countryId\":\"120\",\"dataId\":\"\",\"id\":\"1104\",\"name\":\"Lagunes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1105,\"values\":{\"codes\":\"[\\\"Tetouan\\\"]\",\"countryId\":\"97\",\"dataId\":\"\",\"id\":\"1105\",\"name\":\"Tetouan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1106,\"values\":{\"codes\":\"[\\\"Savanes\\\"]\",\"countryId\":\"120\",\"dataId\":\"\",\"id\":\"1106\",\"name\":\"Savanes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1107,\"values\":{\"codes\":\"[\\\"Lacs\\\"]\",\"countryId\":\"120\",\"dataId\":\"\",\"id\":\"1107\",\"name\":\"Lacs\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1108,\"values\":{\"codes\":\"[\\\"Zanzan\\\"]\",\"countryId\":\"120\",\"dataId\":\"\",\"id\":\"1108\",\"name\":\"Zanzan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1109,\"values\":{\"codes\":\"[\\\"Meknes\\\"]\",\"countryId\":\"97\",\"dataId\":\"\",\"id\":\"1109\",\"name\":\"Meknes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1110,\"values\":{\"codes\":\"[\\\"Niger\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1110\",\"name\":\"Niger\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1111,\"values\":{\"codes\":\"[\\\"Tunis\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1111\",\"name\":\"Tunis\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1112,\"values\":{\"codes\":\"[\\\"Ben-Arous\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1112\",\"name\":\"Ben-Arous\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1113,\"values\":{\"codes\":\"[\\\"Sfax\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1113\",\"name\":\"Sfax\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1114,\"values\":{\"codes\":\"[\\\"Katanga\\\"]\",\"countryId\":\"230\",\"dataId\":\"\",\"id\":\"1114\",\"name\":\"Katanga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1115,\"values\":{\"codes\":\"[\\\"Nord-Kivu\\\"]\",\"countryId\":\"230\",\"dataId\":\"\",\"id\":\"1115\",\"name\":\"Nord-Kivu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1116,\"values\":{\"codes\":\"[\\\"Littoral\\\"]\",\"countryId\":\"222\",\"dataId\":\"\",\"id\":\"1116\",\"name\":\"Littoral\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1117,\"values\":{\"codes\":\"[\\\"阿鲁纳恰尔\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"1117\",\"name\":\"阿鲁纳恰尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1118,\"values\":{\"codes\":\"[\\\"特里普拉\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"1118\",\"name\":\"特里普拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1119,\"values\":{\"codes\":\"[\\\"Khyber-Pakhtunkhwa\\\"]\",\"countryId\":\"21\",\"dataId\":\"\",\"id\":\"1119\",\"name\":\"Khyber-Pakhtunkhwa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1120,\"values\":{\"codes\":\"[\\\"宿雾省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1120\",\"name\":\"宿雾省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1121,\"values\":{\"codes\":\"[\\\"Taranaki\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1121\",\"name\":\"Taranaki\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1122,\"values\":{\"codes\":\"[\\\"邦板牙省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1122\",\"name\":\"邦板牙省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1123,\"values\":{\"codes\":\"[\\\"Kampot\\\"]\",\"countryId\":\"9\",\"dataId\":\"\",\"id\":\"1123\",\"name\":\"Kampot\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1124,\"values\":{\"codes\":\"[\\\"北领地\\\"]\",\"countryId\":\"141\",\"dataId\":\"\",\"id\":\"1124\",\"name\":\"北领地\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1125,\"values\":{\"codes\":\"[\\\"Keski-Pohjanmaa\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1125\",\"name\":\"Keski-Pohjanmaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1126,\"values\":{\"codes\":\"[\\\"Seine-Maritime\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1126\",\"name\":\"Seine-Maritime\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1127,\"values\":{\"codes\":\"[\\\"Vas\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1127\",\"name\":\"Vas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1128,\"values\":{\"codes\":\"[\\\"Wicklow\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1128\",\"name\":\"Wicklow\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1129,\"values\":{\"codes\":\"[\\\"Bilecik\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1129\",\"name\":\"Bilecik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1130,\"values\":{\"codes\":\"[\\\"Bihor\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1130\",\"name\":\"Bihor\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1131,\"values\":{\"codes\":\"[\\\"Plovdiv\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1131\",\"name\":\"Plovdiv\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1132,\"values\":{\"codes\":\"[\\\"Serres\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1132\",\"name\":\"Serres\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1133,\"values\":{\"codes\":\"[\\\"Pernambuco\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1133\",\"name\":\"Pernambuco\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1134,\"values\":{\"codes\":\"[\\\"Bahia\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1134\",\"name\":\"Bahia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1135,\"values\":{\"codes\":\"[\\\"Goias\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1135\",\"name\":\"Goias\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1136,\"values\":{\"codes\":\"[\\\"Alagoas\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1136\",\"name\":\"Alagoas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1137,\"values\":{\"codes\":\"[\\\"Para\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1137\",\"name\":\"Para\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1138,\"values\":{\"codes\":\"[\\\"Tocantins\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1138\",\"name\":\"Tocantins\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1139,\"values\":{\"codes\":\"[\\\"Maule\\\"]\",\"countryId\":\"210\",\"dataId\":\"\",\"id\":\"1139\",\"name\":\"Maule\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1140,\"values\":{\"codes\":\"[\\\"Santa-Catarina\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1140\",\"name\":\"Santa-Catarina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1141,\"values\":{\"codes\":\"[\\\"Mato-Grosso\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1141\",\"name\":\"Mato-Grosso\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1142,\"values\":{\"codes\":\"[\\\"Most\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1142\",\"name\":\"Most\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1143,\"values\":{\"codes\":\"[\\\"Moray\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1143\",\"name\":\"Moray\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1144,\"values\":{\"codes\":\"[\\\"Haskovo\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1144\",\"name\":\"Haskovo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1145,\"values\":{\"codes\":\"[\\\"Isparta\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1145\",\"name\":\"Isparta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1146,\"values\":{\"codes\":\"[\\\"Viqueque\\\"]\",\"countryId\":\"16\",\"dataId\":\"\",\"id\":\"1146\",\"name\":\"Viqueque\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1147,\"values\":{\"codes\":\"[\\\"阿尔拜省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1147\",\"name\":\"阿尔拜省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1148,\"values\":{\"codes\":\"[\\\"索索贡省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1148\",\"name\":\"索索贡省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1149,\"values\":{\"codes\":\"[\\\"甲米地省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1149\",\"name\":\"甲米地省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1150,\"values\":{\"codes\":\"[\\\"Acre\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1150\",\"name\":\"Acre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1151,\"values\":{\"codes\":\"[\\\"Cauca\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1151\",\"name\":\"Cauca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1152,\"values\":{\"codes\":\"[\\\"Entre-Rios\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1152\",\"name\":\"Entre-Rios\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1153,\"values\":{\"codes\":\"[\\\"Piaui\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1153\",\"name\":\"Piaui\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1154,\"values\":{\"codes\":\"[\\\"San-Luis\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1154\",\"name\":\"San-Luis\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1155,\"values\":{\"codes\":\"[\\\"Amazonas\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1155\",\"name\":\"Amazonas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1156,\"values\":{\"codes\":\"[\\\"Mato-Grosso-do-Sul\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1156\",\"name\":\"Mato-Grosso-do-Sul\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1157,\"values\":{\"codes\":\"[\\\"Azuay\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1157\",\"name\":\"Azuay\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1158,\"values\":{\"codes\":\"[\\\"Santander\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1158\",\"name\":\"Santander\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1159,\"values\":{\"codes\":\"[\\\"Chaco\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1159\",\"name\":\"Chaco\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1160,\"values\":{\"codes\":\"[\\\"Santo-Domingo-de-los-Tsachilas\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1160\",\"name\":\"Santo-Domingo-de-los-Tsachilas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1161,\"values\":{\"codes\":\"[\\\"Rio-Negro\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1161\",\"name\":\"Rio-Negro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1162,\"values\":{\"codes\":\"[\\\"Rio-Grande-do-Norte\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1162\",\"name\":\"Rio-Grande-do-Norte\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1163,\"values\":{\"codes\":\"[\\\"Santa-Cruz\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1163\",\"name\":\"Santa-Cruz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1164,\"values\":{\"codes\":\"[\\\"Sergipe\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1164\",\"name\":\"Sergipe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1165,\"values\":{\"codes\":\"[\\\"Antioquia\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1165\",\"name\":\"Antioquia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1166,\"values\":{\"codes\":\"[\\\"Chubut\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1166\",\"name\":\"Chubut\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1167,\"values\":{\"codes\":\"[\\\"Distrito-Federal\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1167\",\"name\":\"Distrito-Federal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1168,\"values\":{\"codes\":\"[\\\"Espirito-Santo\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1168\",\"name\":\"Espirito-Santo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1169,\"values\":{\"codes\":\"[\\\"Mendoza\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1169\",\"name\":\"Mendoza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1170,\"values\":{\"codes\":\"[\\\"Santa-Fe\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1170\",\"name\":\"Santa-Fe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1171,\"values\":{\"codes\":\"[\\\"Misiones\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1171\",\"name\":\"Misiones\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1172,\"values\":{\"codes\":\"[\\\"Arauca\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1172\",\"name\":\"Arauca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1173,\"values\":{\"codes\":\"[\\\"Tungurahua\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1173\",\"name\":\"Tungurahua\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1174,\"values\":{\"codes\":\"[\\\"Amambay\\\"]\",\"countryId\":\"213\",\"dataId\":\"\",\"id\":\"1174\",\"name\":\"Amambay\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1175,\"values\":{\"codes\":\"[\\\"Los-Rios\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1175\",\"name\":\"Los-Rios\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1176,\"values\":{\"codes\":\"[\\\"Santa-Barbara\\\"]\",\"countryId\":\"172\",\"dataId\":\"\",\"id\":\"1176\",\"name\":\"Santa-Barbara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1177,\"values\":{\"codes\":\"[\\\"Carabobo\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1177\",\"name\":\"Carabobo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1178,\"values\":{\"codes\":\"[\\\"Boyaca\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1178\",\"name\":\"Boyaca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1179,\"values\":{\"codes\":\"[\\\"Corrientes\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1179\",\"name\":\"Corrientes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1180,\"values\":{\"codes\":\"[\\\"Chimborazo\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1180\",\"name\":\"Chimborazo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1181,\"values\":{\"codes\":\"[\\\"Zulia\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1181\",\"name\":\"Zulia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1182,\"values\":{\"codes\":\"[\\\"Pichincha\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1182\",\"name\":\"Pichincha\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1183,\"values\":{\"codes\":\"[\\\"Magdalena\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1183\",\"name\":\"Magdalena\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1184,\"values\":{\"codes\":\"[\\\"Cordoba\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1184\",\"name\":\"Cordoba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1185,\"values\":{\"codes\":\"[\\\"Catamarca\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1185\",\"name\":\"Catamarca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1186,\"values\":{\"codes\":\"[\\\"Guayas\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1186\",\"name\":\"Guayas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1187,\"values\":{\"codes\":\"[\\\"Coquimbo\\\"]\",\"countryId\":\"210\",\"dataId\":\"\",\"id\":\"1187\",\"name\":\"Coquimbo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1188,\"values\":{\"codes\":\"[\\\"Salta\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1188\",\"name\":\"Salta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1189,\"values\":{\"codes\":\"[\\\"Limerick\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1189\",\"name\":\"Limerick\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1190,\"values\":{\"codes\":\"[\\\"Kildare\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1190\",\"name\":\"Kildare\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1191,\"values\":{\"codes\":\"[\\\"Sligo\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1191\",\"name\":\"Sligo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1192,\"values\":{\"codes\":\"[\\\"Laois\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1192\",\"name\":\"Laois\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1193,\"values\":{\"codes\":\"[\\\"Westmeath\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1193\",\"name\":\"Westmeath\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1194,\"values\":{\"codes\":\"[\\\"Usti-nad-Labem\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1194\",\"name\":\"Usti-nad-Labem\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1195,\"values\":{\"codes\":\"[\\\"Vsetin\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1195\",\"name\":\"Vsetin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1196,\"values\":{\"codes\":\"[\\\"Blansko\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1196\",\"name\":\"Blansko\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1197,\"values\":{\"codes\":\"[\\\"Znojmo\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1197\",\"name\":\"Znojmo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1198,\"values\":{\"codes\":\"[\\\"Strakonice\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1198\",\"name\":\"Strakonice\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1199,\"values\":{\"codes\":\"[\\\"Teplice\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1199\",\"name\":\"Teplice\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1200,\"values\":{\"codes\":\"[\\\"Louny\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1200\",\"name\":\"Louny\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1201,\"values\":{\"codes\":\"[\\\"Liberec\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1201\",\"name\":\"Liberec\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1202,\"values\":{\"codes\":\"[\\\"Semily\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1202\",\"name\":\"Semily\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1203,\"values\":{\"codes\":\"[\\\"Svitavy\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1203\",\"name\":\"Svitavy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1204,\"values\":{\"codes\":\"[\\\"Usti-nad-Orlici\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1204\",\"name\":\"Usti-nad-Orlici\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1205,\"values\":{\"codes\":\"[\\\"Plzen-jih\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1205\",\"name\":\"Plzen-jih\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1206,\"values\":{\"codes\":\"[\\\"Karvina\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1206\",\"name\":\"Karvina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1207,\"values\":{\"codes\":\"[\\\"Padova\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1207\",\"name\":\"Padova\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1208,\"values\":{\"codes\":\"[\\\"Beqaa\\\"]\",\"countryId\":\"34\",\"dataId\":\"\",\"id\":\"1208\",\"name\":\"Beqaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1209,\"values\":{\"codes\":\"[\\\"Mont-Liban\\\"]\",\"countryId\":\"34\",\"dataId\":\"\",\"id\":\"1209\",\"name\":\"Mont-Liban\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1210,\"values\":{\"codes\":\"[\\\"Palencia\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"1210\",\"name\":\"Palencia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1211,\"values\":{\"codes\":\"[\\\"Warminsko-mazurskie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"1211\",\"name\":\"Warminsko-mazurskie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1212,\"values\":{\"codes\":\"[\\\"Clare\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1212\",\"name\":\"Clare\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1213,\"values\":{\"codes\":\"[\\\"West-Berkshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1213\",\"name\":\"West-Berkshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1214,\"values\":{\"codes\":\"[\\\"Essonne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1214\",\"name\":\"Essonne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1215,\"values\":{\"codes\":\"[\\\"Doubs\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1215\",\"name\":\"Doubs\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1216,\"values\":{\"codes\":\"[\\\"Orne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1216\",\"name\":\"Orne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1217,\"values\":{\"codes\":\"[\\\"Eure\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1217\",\"name\":\"Eure\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1218,\"values\":{\"codes\":\"[\\\"Haute-Savoie\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1218\",\"name\":\"Haute-Savoie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1219,\"values\":{\"codes\":\"[\\\"Ain\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1219\",\"name\":\"Ain\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1220,\"values\":{\"codes\":\"[\\\"Yvelines\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1220\",\"name\":\"Yvelines\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1221,\"values\":{\"codes\":\"[\\\"Veliko-Tarnovo\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1221\",\"name\":\"Veliko-Tarnovo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1222,\"values\":{\"codes\":\"[\\\"Lovech\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1222\",\"name\":\"Lovech\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1223,\"values\":{\"codes\":\"[\\\"Shumen\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1223\",\"name\":\"Shumen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1224,\"values\":{\"codes\":\"[\\\"Silistra\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1224\",\"name\":\"Silistra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1225,\"values\":{\"codes\":\"[\\\"Yambol\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1225\",\"name\":\"Yambol\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1226,\"values\":{\"codes\":\"[\\\"Arad\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1226\",\"name\":\"Arad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1227,\"values\":{\"codes\":\"[\\\"Mure\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1227\",\"name\":\"Mure\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1228,\"values\":{\"codes\":\"[\\\"Satu-Mare\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1228\",\"name\":\"Satu-Mare\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1229,\"values\":{\"codes\":\"[\\\"Dolj\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1229\",\"name\":\"Dolj\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1230,\"values\":{\"codes\":\"[\\\"Ilfov\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1230\",\"name\":\"Ilfov\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1231,\"values\":{\"codes\":\"[\\\"Tulcea\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1231\",\"name\":\"Tulcea\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1232,\"values\":{\"codes\":\"[\\\"Timi\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1232\",\"name\":\"Timi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1233,\"values\":{\"codes\":\"[\\\"Hunedoara\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1233\",\"name\":\"Hunedoara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1234,\"values\":{\"codes\":\"[\\\"Gorj\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1234\",\"name\":\"Gorj\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1235,\"values\":{\"codes\":\"[\\\"Somogy\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1235\",\"name\":\"Somogy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1236,\"values\":{\"codes\":\"[\\\"Alava\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"1236\",\"name\":\"Alava\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1237,\"values\":{\"codes\":\"[\\\"Moselle\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1237\",\"name\":\"Moselle\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1238,\"values\":{\"codes\":\"[\\\"Tachov\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1238\",\"name\":\"Tachov\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1239,\"values\":{\"codes\":\"[\\\"Leiria\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1239\",\"name\":\"Leiria\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1240,\"values\":{\"codes\":\"[\\\"Saint-Martin\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1240\",\"name\":\"Saint-Martin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1241,\"values\":{\"codes\":\"[\\\"Marne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1241\",\"name\":\"Marne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1242,\"values\":{\"codes\":\"[\\\"Osmaniye\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1242\",\"name\":\"Osmaniye\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1243,\"values\":{\"codes\":\"[\\\"Montana\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1243\",\"name\":\"Montana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1244,\"values\":{\"codes\":\"[\\\"Schaffhausen\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"1244\",\"name\":\"Schaffhausen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1245,\"values\":{\"codes\":\"[\\\"Kardzhali\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1245\",\"name\":\"Kardzhali\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1246,\"values\":{\"codes\":\"[\\\"Nachod\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1246\",\"name\":\"Nachod\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1247,\"values\":{\"codes\":\"[\\\"Nelson\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1247\",\"name\":\"Nelson\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1248,\"values\":{\"codes\":\"[\\\"Southland\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1248\",\"name\":\"Southland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1249,\"values\":{\"codes\":\"[\\\"Otago\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1249\",\"name\":\"Otago\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1250,\"values\":{\"codes\":\"[\\\"Manawatu-Wanganui\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1250\",\"name\":\"Manawatu-Wanganui\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1251,\"values\":{\"codes\":\"[\\\"锡金\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"1251\",\"name\":\"锡金\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1252,\"values\":{\"codes\":\"[\\\"达叻府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1252\",\"name\":\"达叻府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1253,\"values\":{\"codes\":\"[\\\"猜那府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1253\",\"name\":\"猜那府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1254,\"values\":{\"codes\":\"[\\\"难府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1254\",\"name\":\"难府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1255,\"values\":{\"codes\":\"[\\\"那空那育府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1255\",\"name\":\"那空那育府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1256,\"values\":{\"codes\":\"[\\\"甲米府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1256\",\"name\":\"甲米府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1257,\"values\":{\"codes\":\"[\\\"寝屋川\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1257\",\"name\":\"寝屋川\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1258,\"values\":{\"codes\":\"[\\\"马斯巴特省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1258\",\"name\":\"马斯巴特省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1259,\"values\":{\"codes\":\"[\\\"内湖省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1259\",\"name\":\"内湖省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1260,\"values\":{\"codes\":\"[\\\"八打雁省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1260\",\"name\":\"八打雁省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1261,\"values\":{\"codes\":\"[\\\"西内格罗省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1261\",\"name\":\"西内格罗省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1262,\"values\":{\"codes\":\"[\\\"布基农省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1262\",\"name\":\"布基农省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1263,\"values\":{\"codes\":\"[\\\"北拉瑙省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1263\",\"name\":\"北拉瑙省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1264,\"values\":{\"codes\":\"[\\\"布拉干省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1264\",\"name\":\"布拉干省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1265,\"values\":{\"codes\":\"[\\\"新怡诗夏省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1265\",\"name\":\"新怡诗夏省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1266,\"values\":{\"codes\":\"[\\\"帕西格\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1266\",\"name\":\"帕西格\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1267,\"values\":{\"codes\":\"[\\\"本格特省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1267\",\"name\":\"本格特省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1268,\"values\":{\"codes\":\"[\\\"巴丹省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1268\",\"name\":\"巴丹省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1269,\"values\":{\"codes\":\"[\\\"拉允隆省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1269\",\"name\":\"拉允隆省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1270,\"values\":{\"codes\":\"[\\\"Tarlac\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1270\",\"name\":\"Tarlac\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1271,\"values\":{\"codes\":\"[\\\"三描礼士省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1271\",\"name\":\"三描礼士省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1272,\"values\":{\"codes\":\"[\\\"Isabela\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1272\",\"name\":\"Isabela\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1273,\"values\":{\"codes\":\"[\\\"南伊罗戈省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1273\",\"name\":\"南伊罗戈省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1274,\"values\":{\"codes\":\"[\\\"伊洛伊洛省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1274\",\"name\":\"伊洛伊洛省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1275,\"values\":{\"codes\":\"[\\\"巴拉望省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1275\",\"name\":\"巴拉望省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1276,\"values\":{\"codes\":\"[\\\"苏禄省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1276\",\"name\":\"苏禄省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1277,\"values\":{\"codes\":\"[\\\"West-Coast\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1277\",\"name\":\"West-Coast\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1278,\"values\":{\"codes\":\"[\\\"呵叻府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1278\",\"name\":\"呵叻府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1279,\"values\":{\"codes\":\"[\\\"廊磨喃蒲府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1279\",\"name\":\"廊磨喃蒲府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1280,\"values\":{\"codes\":\"[\\\"育空\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"1280\",\"name\":\"育空\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1281,\"values\":{\"codes\":\"[\\\"努纳武特\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"1281\",\"name\":\"努纳武特\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1282,\"values\":{\"codes\":\"[\\\"西北地区\\\"]\",\"countryId\":\"165\",\"dataId\":\"\",\"id\":\"1282\",\"name\":\"西北地区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1283,\"values\":{\"codes\":\"[\\\"富吉拉\\\"]\",\"countryId\":\"41\",\"dataId\":\"\",\"id\":\"1283\",\"name\":\"富吉拉\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1284,\"values\":{\"codes\":\"[\\\"朗布隆省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1284\",\"name\":\"朗布隆省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1285,\"values\":{\"codes\":\"[\\\"阿克兰省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1285\",\"name\":\"阿克兰省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1286,\"values\":{\"codes\":\"[\\\"东内格罗省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1286\",\"name\":\"东内格罗省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1287,\"values\":{\"codes\":\"[\\\"达曼和第乌\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"1287\",\"name\":\"达曼和第乌\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1288,\"values\":{\"codes\":\"[\\\"石卷\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1288\",\"name\":\"石卷\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1289,\"values\":{\"codes\":\"[\\\"花卷\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1289\",\"name\":\"花卷\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1290,\"values\":{\"codes\":\"[\\\"Northern-Cape\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1290\",\"name\":\"Northern-Cape\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1291,\"values\":{\"codes\":\"[\\\"Mpumalanga\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1291\",\"name\":\"Mpumalanga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1292,\"values\":{\"codes\":\"[\\\"富士\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1292\",\"name\":\"富士\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1293,\"values\":{\"codes\":\"[\\\"福山\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1293\",\"name\":\"福山\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1294,\"values\":{\"codes\":\"[\\\"松江\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1294\",\"name\":\"松江\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1295,\"values\":{\"codes\":\"[\\\"五所川原\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1295\",\"name\":\"五所川原\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1296,\"values\":{\"codes\":\"[\\\"Wielkopolskie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"1296\",\"name\":\"Wielkopolskie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1297,\"values\":{\"codes\":\"[\\\"Podgorica\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1297\",\"name\":\"Podgorica\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1298,\"values\":{\"codes\":\"[\\\"Berane\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1298\",\"name\":\"Berane\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1299,\"values\":{\"codes\":\"[\\\"Ulcinj\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1299\",\"name\":\"Ulcinj\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1300,\"values\":{\"codes\":\"[\\\"Budva\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1300\",\"name\":\"Budva\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1301,\"values\":{\"codes\":\"[\\\"Savnik\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1301\",\"name\":\"Savnik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1302,\"values\":{\"codes\":\"[\\\"Andrijevica\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1302\",\"name\":\"Andrijevica\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1303,\"values\":{\"codes\":\"[\\\"Tbilisi\\\"]\",\"countryId\":\"44\",\"dataId\":\"\",\"id\":\"1303\",\"name\":\"Tbilisi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1304,\"values\":{\"codes\":\"[\\\"Dudley\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1304\",\"name\":\"Dudley\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1305,\"values\":{\"codes\":\"[\\\"Teruel\\\"]\",\"countryId\":\"89\",\"dataId\":\"\",\"id\":\"1305\",\"name\":\"Teruel\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1306,\"values\":{\"codes\":\"[\\\"Meurthe-et-Moselle\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1306\",\"name\":\"Meurthe-et-Moselle\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1307,\"values\":{\"codes\":\"[\\\"Keski-Suomi\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1307\",\"name\":\"Keski-Suomi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1308,\"values\":{\"codes\":\"[\\\"Pohjois-Savo\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1308\",\"name\":\"Pohjois-Savo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1309,\"values\":{\"codes\":\"[\\\"Hovedstaden\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"1309\",\"name\":\"Hovedstaden\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1310,\"values\":{\"codes\":\"[\\\"Jicin\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1310\",\"name\":\"Jicin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1311,\"values\":{\"codes\":\"[\\\"Vorarlberg\\\"]\",\"countryId\":\"66\",\"dataId\":\"\",\"id\":\"1311\",\"name\":\"Vorarlberg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1312,\"values\":{\"codes\":\"[\\\"Thuringen\\\"]\",\"countryId\":\"65\",\"dataId\":\"\",\"id\":\"1312\",\"name\":\"Thuringen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1313,\"values\":{\"codes\":\"[\\\"Pohjois-Karjala\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1313\",\"name\":\"Pohjois-Karjala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1314,\"values\":{\"codes\":\"[\\\"Loiret\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1314\",\"name\":\"Loiret\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1315,\"values\":{\"codes\":\"[\\\"Jura\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1315\",\"name\":\"Jura\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1316,\"values\":{\"codes\":\"[\\\"Miskolc\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1316\",\"name\":\"Miskolc\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1317,\"values\":{\"codes\":\"[\\\"Szolnok\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1317\",\"name\":\"Szolnok\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1318,\"values\":{\"codes\":\"[\\\"Peterborough\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1318\",\"name\":\"Peterborough\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1319,\"values\":{\"codes\":\"[\\\"Bedford\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1319\",\"name\":\"Bedford\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1320,\"values\":{\"codes\":\"[\\\"Oxfordshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1320\",\"name\":\"Oxfordshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1321,\"values\":{\"codes\":\"[\\\"Richmond-upon-Thames\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1321\",\"name\":\"Richmond-upon-Thames\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1322,\"values\":{\"codes\":\"[\\\"Rhondda\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1322\",\"name\":\"Rhondda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1323,\"values\":{\"codes\":\"[\\\"Walsall\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1323\",\"name\":\"Walsall\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1324,\"values\":{\"codes\":\"[\\\"Renfrewshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1324\",\"name\":\"Renfrewshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1325,\"values\":{\"codes\":\"[\\\"Stockton-on-Tees\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1325\",\"name\":\"Stockton-on-Tees\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1326,\"values\":{\"codes\":\"[\\\"Bracknell-Forest\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1326\",\"name\":\"Bracknell-Forest\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1327,\"values\":{\"codes\":\"[\\\"Halton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1327\",\"name\":\"Halton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1328,\"values\":{\"codes\":\"[\\\"Merton\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1328\",\"name\":\"Merton\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1329,\"values\":{\"codes\":\"[\\\"Inverclyde\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1329\",\"name\":\"Inverclyde\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1330,\"values\":{\"codes\":\"[\\\"Belfast\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1330\",\"name\":\"Belfast\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1331,\"values\":{\"codes\":\"[\\\"Liege\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1331\",\"name\":\"Liege\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1332,\"values\":{\"codes\":\"[\\\"Hainaut\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1332\",\"name\":\"Hainaut\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1333,\"values\":{\"codes\":\"[\\\"Lappi\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1333\",\"name\":\"Lappi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1334,\"values\":{\"codes\":\"[\\\"East-Riding-of-Yorkshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1334\",\"name\":\"East-Riding-of-Yorkshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1335,\"values\":{\"codes\":\"[\\\"Alba\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1335\",\"name\":\"Alba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1336,\"values\":{\"codes\":\"[\\\"Giurgiu\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1336\",\"name\":\"Giurgiu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1337,\"values\":{\"codes\":\"[\\\"Karaman\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1337\",\"name\":\"Karaman\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1338,\"values\":{\"codes\":\"[\\\"Yalova\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1338\",\"name\":\"Yalova\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1339,\"values\":{\"codes\":\"[\\\"Knowsley\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1339\",\"name\":\"Knowsley\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1340,\"values\":{\"codes\":\"[\\\"Vale-of-Glamorgan\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1340\",\"name\":\"Vale-of-Glamorgan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1341,\"values\":{\"codes\":\"[\\\"Francisco-Morazan\\\"]\",\"countryId\":\"172\",\"dataId\":\"\",\"id\":\"1341\",\"name\":\"Francisco-Morazan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1342,\"values\":{\"codes\":\"[\\\"Barahona\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1342\",\"name\":\"Barahona\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1343,\"values\":{\"codes\":\"[\\\"Santiago\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1343\",\"name\":\"Santiago\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1344,\"values\":{\"codes\":\"[\\\"Apure\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1344\",\"name\":\"Apure\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1345,\"values\":{\"codes\":\"[\\\"Tolima\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1345\",\"name\":\"Tolima\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1346,\"values\":{\"codes\":\"[\\\"Saint-Philip\\\"]\",\"countryId\":\"187\",\"dataId\":\"\",\"id\":\"1346\",\"name\":\"Saint-Philip\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1347,\"values\":{\"codes\":\"[\\\"Solihull\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1347\",\"name\":\"Solihull\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1348,\"values\":{\"codes\":\"[\\\"Saint-George\\\"]\",\"countryId\":\"186\",\"dataId\":\"\",\"id\":\"1348\",\"name\":\"Saint-George\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1349,\"values\":{\"codes\":\"[\\\"Saint-Patrick\\\"]\",\"countryId\":\"186\",\"dataId\":\"\",\"id\":\"1349\",\"name\":\"Saint-Patrick\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1350,\"values\":{\"codes\":\"[\\\"Saint-James\\\"]\",\"countryId\":\"187\",\"dataId\":\"\",\"id\":\"1350\",\"name\":\"Saint-James\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1351,\"values\":{\"codes\":\"[\\\"San-Cristobal\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1351\",\"name\":\"San-Cristobal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1352,\"values\":{\"codes\":\"[\\\"La-Altagracia\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1352\",\"name\":\"La-Altagracia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1353,\"values\":{\"codes\":\"[\\\"Tata\\\"]\",\"countryId\":\"97\",\"dataId\":\"\",\"id\":\"1353\",\"name\":\"Tata\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1354,\"values\":{\"codes\":\"[\\\"Kingston\\\"]\",\"countryId\":\"178\",\"dataId\":\"\",\"id\":\"1354\",\"name\":\"Kingston\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1355,\"values\":{\"codes\":\"[\\\"Asuncion\\\"]\",\"countryId\":\"213\",\"dataId\":\"\",\"id\":\"1355\",\"name\":\"Asuncion\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1356,\"values\":{\"codes\":\"[\\\"Viana-do-Castelo\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1356\",\"name\":\"Viana-do-Castelo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1357,\"values\":{\"codes\":\"[\\\"Glarus\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"1357\",\"name\":\"Glarus\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1358,\"values\":{\"codes\":\"[\\\"Vratsa\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1358\",\"name\":\"Vratsa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1359,\"values\":{\"codes\":\"[\\\"Ingushetiya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1359\",\"name\":\"Ingushetiya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1360,\"values\":{\"codes\":\"[\\\"Edine\\\"]\",\"countryId\":\"60\",\"dataId\":\"\",\"id\":\"1360\",\"name\":\"Edine\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1361,\"values\":{\"codes\":\"[\\\"Shropshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1361\",\"name\":\"Shropshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1362,\"values\":{\"codes\":\"[\\\"West-Lothian\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1362\",\"name\":\"West-Lothian\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1363,\"values\":{\"codes\":\"[\\\"Gateshead\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1363\",\"name\":\"Gateshead\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1364,\"values\":{\"codes\":\"[\\\"Wakefield\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1364\",\"name\":\"Wakefield\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1365,\"values\":{\"codes\":\"[\\\"Blackpool\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1365\",\"name\":\"Blackpool\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1366,\"values\":{\"codes\":\"[\\\"Rotherham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1366\",\"name\":\"Rotherham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1367,\"values\":{\"codes\":\"[\\\"Saone-et-Loire\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1367\",\"name\":\"Saone-et-Loire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1368,\"values\":{\"codes\":\"[\\\"Yonne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1368\",\"name\":\"Yonne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1369,\"values\":{\"codes\":\"[\\\"Herault\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1369\",\"name\":\"Herault\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1370,\"values\":{\"codes\":\"[\\\"Aveyron\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1370\",\"name\":\"Aveyron\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1371,\"values\":{\"codes\":\"[\\\"Isere\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1371\",\"name\":\"Isere\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1372,\"values\":{\"codes\":\"[\\\"Allier\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1372\",\"name\":\"Allier\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1373,\"values\":{\"codes\":\"[\\\"Gard\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1373\",\"name\":\"Gard\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1374,\"values\":{\"codes\":\"[\\\"Lot-et-Garonne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1374\",\"name\":\"Lot-et-Garonne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1375,\"values\":{\"codes\":\"[\\\"Dordogne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1375\",\"name\":\"Dordogne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1376,\"values\":{\"codes\":\"[\\\"Lot\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1376\",\"name\":\"Lot\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1377,\"values\":{\"codes\":\"[\\\"Haute-Marne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1377\",\"name\":\"Haute-Marne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1378,\"values\":{\"codes\":\"[\\\"Finistere\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1378\",\"name\":\"Finistere\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1379,\"values\":{\"codes\":\"[\\\"Nord\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1379\",\"name\":\"Nord\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1380,\"values\":{\"codes\":\"[\\\"Vosges\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1380\",\"name\":\"Vosges\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1381,\"values\":{\"codes\":\"[\\\"Gers\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1381\",\"name\":\"Gers\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1382,\"values\":{\"codes\":\"[\\\"Tarn-et-Garonne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1382\",\"name\":\"Tarn-et-Garonne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1383,\"values\":{\"codes\":\"[\\\"Nievre\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1383\",\"name\":\"Nievre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1384,\"values\":{\"codes\":\"[\\\"Haute-Garonne\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1384\",\"name\":\"Haute-Garonne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1385,\"values\":{\"codes\":\"[\\\"Alpes-de-Haute-Provence\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1385\",\"name\":\"Alpes-de-Haute-Provence\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1386,\"values\":{\"codes\":\"[\\\"Eure-et-Loir\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1386\",\"name\":\"Eure-et-Loir\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1387,\"values\":{\"codes\":\"[\\\"Meuse\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1387\",\"name\":\"Meuse\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1388,\"values\":{\"codes\":\"[\\\"Sarthe\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1388\",\"name\":\"Sarthe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1389,\"values\":{\"codes\":\"[\\\"Cantal\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1389\",\"name\":\"Cantal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1390,\"values\":{\"codes\":\"[\\\"Haute-Corse\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1390\",\"name\":\"Haute-Corse\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1391,\"values\":{\"codes\":\"[\\\"Pyrenees-Orientales\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1391\",\"name\":\"Pyrenees-Orientales\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1392,\"values\":{\"codes\":\"[\\\"Ardeche\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1392\",\"name\":\"Ardeche\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1393,\"values\":{\"codes\":\"[\\\"Cher\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1393\",\"name\":\"Cher\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1394,\"values\":{\"codes\":\"[\\\"Pernik\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1394\",\"name\":\"Pernik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1395,\"values\":{\"codes\":\"[\\\"Kainuu\\\"]\",\"countryId\":\"49\",\"dataId\":\"\",\"id\":\"1395\",\"name\":\"Kainuu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1396,\"values\":{\"codes\":\"[\\\"Bormla\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1396\",\"name\":\"Bormla\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1397,\"values\":{\"codes\":\"[\\\"Swieqi\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1397\",\"name\":\"Swieqi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1398,\"values\":{\"codes\":\"[\\\"Mosta\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1398\",\"name\":\"Mosta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1399,\"values\":{\"codes\":\"[\\\"Oost-Vlaanderen\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1399\",\"name\":\"Oost-Vlaanderen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1400,\"values\":{\"codes\":\"[\\\"Tolna\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1400\",\"name\":\"Tolna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1401,\"values\":{\"codes\":\"[\\\"Praha-10\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1401\",\"name\":\"Praha-10\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1402,\"values\":{\"codes\":\"[\\\"Rakovnik\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1402\",\"name\":\"Rakovnik\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1403,\"values\":{\"codes\":\"[\\\"Klatovy\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1403\",\"name\":\"Klatovy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1404,\"values\":{\"codes\":\"[\\\"Sumperk\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1404\",\"name\":\"Sumperk\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1405,\"values\":{\"codes\":\"[\\\"Rokycany\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1405\",\"name\":\"Rokycany\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1406,\"values\":{\"codes\":\"[\\\"Nagykanizsa\\\"]\",\"countryId\":\"64\",\"dataId\":\"\",\"id\":\"1406\",\"name\":\"Nagykanizsa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1407,\"values\":{\"codes\":\"[\\\"Al-Khawr-wa-adh-Dhakhirah\\\"]\",\"countryId\":\"39\",\"dataId\":\"\",\"id\":\"1407\",\"name\":\"Al-Khawr-wa-adh-Dhakhirah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1408,\"values\":{\"codes\":\"[\\\"Cheshire-West-and-Chester\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1408\",\"name\":\"Cheshire-West-and-Chester\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1409,\"values\":{\"codes\":\"[\\\"Afyonkarahisar\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1409\",\"name\":\"Afyonkarahisar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1410,\"values\":{\"codes\":\"[\\\"Batman\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1410\",\"name\":\"Batman\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1411,\"values\":{\"codes\":\"[\\\"Duzce\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1411\",\"name\":\"Duzce\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1412,\"values\":{\"codes\":\"[\\\"Giresun\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1412\",\"name\":\"Giresun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1413,\"values\":{\"codes\":\"[\\\"Karabuk\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1413\",\"name\":\"Karabuk\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1414,\"values\":{\"codes\":\"[\\\"Deux-Sevres\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1414\",\"name\":\"Deux-Sevres\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1415,\"values\":{\"codes\":\"[\\\"Artvin\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1415\",\"name\":\"Artvin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1416,\"values\":{\"codes\":\"[\\\"Monaghan\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1416\",\"name\":\"Monaghan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1417,\"values\":{\"codes\":\"[\\\"Cavan\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1417\",\"name\":\"Cavan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1418,\"values\":{\"codes\":\"[\\\"North-Lincolnshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1418\",\"name\":\"North-Lincolnshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1419,\"values\":{\"codes\":\"[\\\"Torfaen\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1419\",\"name\":\"Torfaen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1420,\"values\":{\"codes\":\"[\\\"Darlington\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1420\",\"name\":\"Darlington\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1421,\"values\":{\"codes\":\"[\\\"West-Dunbartonshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1421\",\"name\":\"West-Dunbartonshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1422,\"values\":{\"codes\":\"[\\\"Isle-of-Anglesey\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1422\",\"name\":\"Isle-of-Anglesey\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1423,\"values\":{\"codes\":\"[\\\"East-Lothian\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1423\",\"name\":\"East-Lothian\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1424,\"values\":{\"codes\":\"[\\\"Vaslui\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1424\",\"name\":\"Vaslui\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1425,\"values\":{\"codes\":\"[\\\"Mlada-Boleslav\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1425\",\"name\":\"Mlada-Boleslav\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1426,\"values\":{\"codes\":\"[\\\"Magadanskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1426\",\"name\":\"Magadanskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1427,\"values\":{\"codes\":\"[\\\"Newport\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1427\",\"name\":\"Newport\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1428,\"values\":{\"codes\":\"[\\\"Neath-Port-Talbot\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1428\",\"name\":\"Neath-Port-Talbot\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1429,\"values\":{\"codes\":\"[\\\"Powys\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1429\",\"name\":\"Powys\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1430,\"values\":{\"codes\":\"[\\\"Stavropolskiy\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1430\",\"name\":\"Stavropolskiy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1431,\"values\":{\"codes\":\"[\\\"Tokat\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1431\",\"name\":\"Tokat\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1432,\"values\":{\"codes\":\"[\\\"Van\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1432\",\"name\":\"Van\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1433,\"values\":{\"codes\":\"[\\\"Kutahya\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1433\",\"name\":\"Kutahya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1434,\"values\":{\"codes\":\"[\\\"Trabzon\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1434\",\"name\":\"Trabzon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1435,\"values\":{\"codes\":\"[\\\"Indre-et-Loire\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1435\",\"name\":\"Indre-et-Loire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1436,\"values\":{\"codes\":\"[\\\"East-Renfrewshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1436\",\"name\":\"East-Renfrewshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1437,\"values\":{\"codes\":\"[\\\"Olt\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1437\",\"name\":\"Olt\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1438,\"values\":{\"codes\":\"[\\\"Lewisham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1438\",\"name\":\"Lewisham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1439,\"values\":{\"codes\":\"[\\\"Burgenland\\\"]\",\"countryId\":\"66\",\"dataId\":\"\",\"id\":\"1439\",\"name\":\"Burgenland\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1440,\"values\":{\"codes\":\"[\\\"Ceska-Lipa\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1440\",\"name\":\"Ceska-Lipa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1441,\"values\":{\"codes\":\"[\\\"Namur\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1441\",\"name\":\"Namur\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1442,\"values\":{\"codes\":\"[\\\"Valgamaa\\\"]\",\"countryId\":\"54\",\"dataId\":\"\",\"id\":\"1442\",\"name\":\"Valgamaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1443,\"values\":{\"codes\":\"[\\\"Primorsko-goranska\\\"]\",\"countryId\":\"83\",\"dataId\":\"\",\"id\":\"1443\",\"name\":\"Primorsko-goranska\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1444,\"values\":{\"codes\":\"[\\\"Wigan\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1444\",\"name\":\"Wigan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1445,\"values\":{\"codes\":\"[\\\"Midlothian\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1445\",\"name\":\"Midlothian\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1446,\"values\":{\"codes\":\"[\\\"Croydon\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1446\",\"name\":\"Croydon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1447,\"values\":{\"codes\":\"[\\\"Wirral\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1447\",\"name\":\"Wirral\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1448,\"values\":{\"codes\":\"[\\\"Caerphilly\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1448\",\"name\":\"Caerphilly\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1449,\"values\":{\"codes\":\"[\\\"Stoke-on-Trent\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1449\",\"name\":\"Stoke-on-Trent\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1450,\"values\":{\"codes\":\"[\\\"Wokingham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1450\",\"name\":\"Wokingham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1451,\"values\":{\"codes\":\"[\\\"Blaenau-Gwent\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1451\",\"name\":\"Blaenau-Gwent\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1452,\"values\":{\"codes\":\"[\\\"North-Tyneside\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1452\",\"name\":\"North-Tyneside\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1453,\"values\":{\"codes\":\"[\\\"Setubal\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1453\",\"name\":\"Setubal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1454,\"values\":{\"codes\":\"[\\\"Faro\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1454\",\"name\":\"Faro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1455,\"values\":{\"codes\":\"[\\\"Portalegre\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1455\",\"name\":\"Portalegre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1456,\"values\":{\"codes\":\"[\\\"Guarda\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1456\",\"name\":\"Guarda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1457,\"values\":{\"codes\":\"[\\\"Castelo-Branco\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1457\",\"name\":\"Castelo-Branco\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1458,\"values\":{\"codes\":\"[\\\"Limburg\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1458\",\"name\":\"Limburg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1459,\"values\":{\"codes\":\"[\\\"Nidwalden\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"1459\",\"name\":\"Nidwalden\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1460,\"values\":{\"codes\":\"[\\\"Covasna\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1460\",\"name\":\"Covasna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1461,\"values\":{\"codes\":\"[\\\"Ad-Dakhiliyah\\\"]\",\"countryId\":\"42\",\"dataId\":\"\",\"id\":\"1461\",\"name\":\"Ad-Dakhiliyah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1462,\"values\":{\"codes\":\"[\\\"Brabant-wallon\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1462\",\"name\":\"Brabant-wallon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1463,\"values\":{\"codes\":\"[\\\"Luxembourg\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1463\",\"name\":\"Luxembourg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1464,\"values\":{\"codes\":\"[\\\"Bexley\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1464\",\"name\":\"Bexley\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1465,\"values\":{\"codes\":\"[\\\"East-Dunbartonshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1465\",\"name\":\"East-Dunbartonshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1466,\"values\":{\"codes\":\"[\\\"Donegal\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1466\",\"name\":\"Donegal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1467,\"values\":{\"codes\":\"[\\\"Offaly\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1467\",\"name\":\"Offaly\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1468,\"values\":{\"codes\":\"[\\\"Longford\\\"]\",\"countryId\":\"70\",\"dataId\":\"\",\"id\":\"1468\",\"name\":\"Longford\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1469,\"values\":{\"codes\":\"[\\\"Isle-of-Wight\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1469\",\"name\":\"Isle-of-Wight\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1470,\"values\":{\"codes\":\"[\\\"Neam\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1470\",\"name\":\"Neam\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1471,\"values\":{\"codes\":\"[\\\"Sandwell\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1471\",\"name\":\"Sandwell\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1472,\"values\":{\"codes\":\"[\\\"Barking-and-Dagenham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1472\",\"name\":\"Barking-and-Dagenham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1473,\"values\":{\"codes\":\"[\\\"Carmarthenshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1473\",\"name\":\"Carmarthenshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1474,\"values\":{\"codes\":\"[\\\"Argyll-and-Bute\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1474\",\"name\":\"Argyll-and-Bute\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1475,\"values\":{\"codes\":\"[\\\"Sivas\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1475\",\"name\":\"Sivas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1476,\"values\":{\"codes\":\"[\\\"Vidin\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1476\",\"name\":\"Vidin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1477,\"values\":{\"codes\":\"[\\\"Qaraghandy\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"1477\",\"name\":\"Qaraghandy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1478,\"values\":{\"codes\":\"[\\\"Ventspils\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1478\",\"name\":\"Ventspils\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1479,\"values\":{\"codes\":\"[\\\"Ariege\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1479\",\"name\":\"Ariege\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1480,\"values\":{\"codes\":\"[\\\"Tukuma\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1480\",\"name\":\"Tukuma\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1481,\"values\":{\"codes\":\"[\\\"Kuldigas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1481\",\"name\":\"Kuldigas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1482,\"values\":{\"codes\":\"[\\\"Cesu\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1482\",\"name\":\"Cesu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1483,\"values\":{\"codes\":\"[\\\"Bauskas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1483\",\"name\":\"Bauskas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1484,\"values\":{\"codes\":\"[\\\"Siguldas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1484\",\"name\":\"Siguldas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1485,\"values\":{\"codes\":\"[\\\"Salaspils\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1485\",\"name\":\"Salaspils\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1486,\"values\":{\"codes\":\"[\\\"Jelgava\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1486\",\"name\":\"Jelgava\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1487,\"values\":{\"codes\":\"[\\\"Saulkrastu\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1487\",\"name\":\"Saulkrastu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1488,\"values\":{\"codes\":\"[\\\"Aizkraukles\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1488\",\"name\":\"Aizkraukles\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1489,\"values\":{\"codes\":\"[\\\"Gulbenes\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1489\",\"name\":\"Gulbenes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1490,\"values\":{\"codes\":\"[\\\"Aluksnes\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1490\",\"name\":\"Aluksnes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1491,\"values\":{\"codes\":\"[\\\"Ludzas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1491\",\"name\":\"Ludzas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1492,\"values\":{\"codes\":\"[\\\"Rezekne\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1492\",\"name\":\"Rezekne\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1493,\"values\":{\"codes\":\"[\\\"Saldus\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1493\",\"name\":\"Saldus\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1494,\"values\":{\"codes\":\"[\\\"Daugavpils\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1494\",\"name\":\"Daugavpils\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1495,\"values\":{\"codes\":\"[\\\"Rujienas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1495\",\"name\":\"Rujienas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1496,\"values\":{\"codes\":\"[\\\"Sejas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1496\",\"name\":\"Sejas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1497,\"values\":{\"codes\":\"[\\\"Malpils\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1497\",\"name\":\"Malpils\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1498,\"values\":{\"codes\":\"[\\\"Jurmala\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1498\",\"name\":\"Jurmala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1499,\"values\":{\"codes\":\"[\\\"Bjelovarsko-bilogorska\\\"]\",\"countryId\":\"83\",\"dataId\":\"\",\"id\":\"1499\",\"name\":\"Bjelovarsko-bilogorska\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1500,\"values\":{\"codes\":\"[\\\"Samarqand\\\"]\",\"countryId\":\"27\",\"dataId\":\"\",\"id\":\"1500\",\"name\":\"Samarqand\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1501,\"values\":{\"codes\":\"[\\\"Limassol\\\"]\",\"countryId\":\"48\",\"dataId\":\"\",\"id\":\"1501\",\"name\":\"Limassol\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1502,\"values\":{\"codes\":\"[\\\"Ramallah\\\"]\",\"countryId\":\"36\",\"dataId\":\"\",\"id\":\"1502\",\"name\":\"Ramallah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1503,\"values\":{\"codes\":\"[\\\"Mazowieckie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"1503\",\"name\":\"Mazowieckie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1504,\"values\":{\"codes\":\"[\\\"Pembrokeshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1504\",\"name\":\"Pembrokeshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1505,\"values\":{\"codes\":\"[\\\"Opolskie\\\"]\",\"countryId\":\"61\",\"dataId\":\"\",\"id\":\"1505\",\"name\":\"Opolskie\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1506,\"values\":{\"codes\":\"[\\\"Steiermark\\\"]\",\"countryId\":\"66\",\"dataId\":\"\",\"id\":\"1506\",\"name\":\"Steiermark\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1507,\"values\":{\"codes\":\"[\\\"Bridgend\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1507\",\"name\":\"Bridgend\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1508,\"values\":{\"codes\":\"[\\\"伊斯法罕\\\"]\",\"countryId\":\"31\",\"dataId\":\"\",\"id\":\"1508\",\"name\":\"伊斯法罕\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1509,\"values\":{\"codes\":\"[\\\"Kladno\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1509\",\"name\":\"Kladno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1510,\"values\":{\"codes\":\"[\\\"Karditsa\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1510\",\"name\":\"Karditsa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1511,\"values\":{\"codes\":\"[\\\"Arta\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1511\",\"name\":\"Arta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1512,\"values\":{\"codes\":\"[\\\"Zakynthos\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1512\",\"name\":\"Zakynthos\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1513,\"values\":{\"codes\":\"[\\\"Xanthi\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1513\",\"name\":\"Xanthi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1514,\"values\":{\"codes\":\"[\\\"Ceske-Budejovice\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1514\",\"name\":\"Ceske-Budejovice\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1515,\"values\":{\"codes\":\"[\\\"Teleorman\\\"]\",\"countryId\":\"76\",\"dataId\":\"\",\"id\":\"1515\",\"name\":\"Teleorman\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1516,\"values\":{\"codes\":\"[\\\"Tyva\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1516\",\"name\":\"Tyva\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1517,\"values\":{\"codes\":\"[\\\"Ioannina\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1517\",\"name\":\"Ioannina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1518,\"values\":{\"codes\":\"[\\\"Mardin\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1518\",\"name\":\"Mardin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1519,\"values\":{\"codes\":\"[\\\"orum\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1519\",\"name\":\"orum\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1520,\"values\":{\"codes\":\"[\\\"Ardahan\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1520\",\"name\":\"Ardahan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1521,\"values\":{\"codes\":\"[\\\"达德拉纳加尔哈维利\\\"]\",\"countryId\":\"20\",\"dataId\":\"\",\"id\":\"1521\",\"name\":\"达德拉纳加尔哈维利\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1522,\"values\":{\"codes\":\"[\\\"汶干府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1522\",\"name\":\"汶干府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1523,\"values\":{\"codes\":\"[\\\"沙缴府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1523\",\"name\":\"沙缴府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1524,\"values\":{\"codes\":\"[\\\"安纳乍能府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1524\",\"name\":\"安纳乍能府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1525,\"values\":{\"codes\":\"[\\\"Free-State\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1525\",\"name\":\"Free-State\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1526,\"values\":{\"codes\":\"[\\\"Western-Cape\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1526\",\"name\":\"Western-Cape\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1527,\"values\":{\"codes\":\"[\\\"Osun\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1527\",\"name\":\"Osun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1528,\"values\":{\"codes\":\"[\\\"Rivers\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1528\",\"name\":\"Rivers\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1529,\"values\":{\"codes\":\"[\\\"Kano\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1529\",\"name\":\"Kano\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1530,\"values\":{\"codes\":\"[\\\"Limpopo\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1530\",\"name\":\"Limpopo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1531,\"values\":{\"codes\":\"[\\\"Litoral\\\"]\",\"countryId\":\"228\",\"dataId\":\"\",\"id\":\"1531\",\"name\":\"Litoral\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1532,\"values\":{\"codes\":\"[\\\"Central\\\"]\",\"countryId\":\"126\",\"dataId\":\"\",\"id\":\"1532\",\"name\":\"Central\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1533,\"values\":{\"codes\":\"[\\\"Nabeul\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1533\",\"name\":\"Nabeul\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1534,\"values\":{\"codes\":\"[\\\"南哥打巴托省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1534\",\"name\":\"南哥打巴托省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1535,\"values\":{\"codes\":\"[\\\"东南苏拉威西\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1535\",\"name\":\"东南苏拉威西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1536,\"values\":{\"codes\":\"[\\\"Manufahi\\\"]\",\"countryId\":\"16\",\"dataId\":\"\",\"id\":\"1536\",\"name\":\"Manufahi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1537,\"values\":{\"codes\":\"[\\\"春武里府\\\"]\",\"countryId\":\"11\",\"dataId\":\"\",\"id\":\"1537\",\"name\":\"春武里府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1538,\"values\":{\"codes\":\"[\\\"亚齐特区\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1538\",\"name\":\"亚齐特区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1539,\"values\":{\"codes\":\"[\\\"邦加勿里洞\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1539\",\"name\":\"邦加勿里洞\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1540,\"values\":{\"codes\":\"[\\\"东萨马省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1540\",\"name\":\"东萨马省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1541,\"values\":{\"codes\":\"[\\\"Magway\\\"]\",\"countryId\":\"10\",\"dataId\":\"\",\"id\":\"1541\",\"name\":\"Magway\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1542,\"values\":{\"codes\":\"[\\\"Cova-Lima\\\"]\",\"countryId\":\"16\",\"dataId\":\"\",\"id\":\"1542\",\"name\":\"Cova-Lima\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1543,\"values\":{\"codes\":\"[\\\"Manatuto\\\"]\",\"countryId\":\"16\",\"dataId\":\"\",\"id\":\"1543\",\"name\":\"Manatuto\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1544,\"values\":{\"codes\":\"[\\\"卡皮斯省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1544\",\"name\":\"卡皮斯省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1545,\"values\":{\"codes\":\"[\\\"安蒂克省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1545\",\"name\":\"安蒂克省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1546,\"values\":{\"codes\":\"[\\\"South-Island\\\"]\",\"countryId\":\"142\",\"dataId\":\"\",\"id\":\"1546\",\"name\":\"South-Island\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1547,\"values\":{\"codes\":\"[\\\"巴西兰省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1547\",\"name\":\"巴西兰省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1548,\"values\":{\"codes\":\"[\\\"长冈\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1548\",\"name\":\"长冈\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1549,\"values\":{\"codes\":\"[\\\"西苏拉威西\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1549\",\"name\":\"西苏拉威西\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1550,\"values\":{\"codes\":\"[\\\"Chittagong\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1550\",\"name\":\"Chittagong\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1551,\"values\":{\"codes\":\"[\\\"Mymensingh\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1551\",\"name\":\"Mymensingh\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1552,\"values\":{\"codes\":\"[\\\"Barisal\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1552\",\"name\":\"Barisal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1553,\"values\":{\"codes\":\"[\\\"Rajshahi\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1553\",\"name\":\"Rajshahi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1554,\"values\":{\"codes\":\"[\\\"Sylhet\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1554\",\"name\":\"Sylhet\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1555,\"values\":{\"codes\":\"[\\\"Khulna\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1555\",\"name\":\"Khulna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1556,\"values\":{\"codes\":\"[\\\"Gandaki\\\"]\",\"countryId\":\"17\",\"dataId\":\"\",\"id\":\"1556\",\"name\":\"Gandaki\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1557,\"values\":{\"codes\":\"[\\\"Rangpur\\\"]\",\"countryId\":\"19\",\"dataId\":\"\",\"id\":\"1557\",\"name\":\"Rangpur\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1558,\"values\":{\"codes\":\"[\\\"Parwan\\\"]\",\"countryId\":\"29\",\"dataId\":\"\",\"id\":\"1558\",\"name\":\"Parwan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1559,\"values\":{\"codes\":\"[\\\"Herat\\\"]\",\"countryId\":\"29\",\"dataId\":\"\",\"id\":\"1559\",\"name\":\"Herat\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1560,\"values\":{\"codes\":\"[\\\"Bokeo\\\"]\",\"countryId\":\"8\",\"dataId\":\"\",\"id\":\"1560\",\"name\":\"Bokeo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1561,\"values\":{\"codes\":\"[\\\"Akwa-Ibom\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1561\",\"name\":\"Akwa-Ibom\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1562,\"values\":{\"codes\":\"[\\\"Abia\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1562\",\"name\":\"Abia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1563,\"values\":{\"codes\":\"[\\\"Katsina\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1563\",\"name\":\"Katsina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1564,\"values\":{\"codes\":\"[\\\"Imo\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1564\",\"name\":\"Imo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1565,\"values\":{\"codes\":\"[\\\"Gombe\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1565\",\"name\":\"Gombe\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1566,\"values\":{\"codes\":\"[\\\"Edo\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1566\",\"name\":\"Edo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1567,\"values\":{\"codes\":\"[\\\"Delta\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1567\",\"name\":\"Delta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1568,\"values\":{\"codes\":\"[\\\"Kaduna\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1568\",\"name\":\"Kaduna\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1569,\"values\":{\"codes\":\"[\\\"Oyo\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1569\",\"name\":\"Oyo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1570,\"values\":{\"codes\":\"[\\\"Borno\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1570\",\"name\":\"Borno\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1571,\"values\":{\"codes\":\"[\\\"Cross-River\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1571\",\"name\":\"Cross-River\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1572,\"values\":{\"codes\":\"[\\\"Kwara\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1572\",\"name\":\"Kwara\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1573,\"values\":{\"codes\":\"[\\\"Enugu\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1573\",\"name\":\"Enugu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1574,\"values\":{\"codes\":\"[\\\"Anambra\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1574\",\"name\":\"Anambra\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1575,\"values\":{\"codes\":\"[\\\"Haute-Saone\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1575\",\"name\":\"Haute-Saone\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1576,\"values\":{\"codes\":\"[\\\"Bijelo-Polje\\\"]\",\"countryId\":\"219\",\"dataId\":\"\",\"id\":\"1576\",\"name\":\"Bijelo-Polje\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1577,\"values\":{\"codes\":\"[\\\"Kutna-Hora\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1577\",\"name\":\"Kutna-Hora\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1578,\"values\":{\"codes\":\"[\\\"Naxxar\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1578\",\"name\":\"Naxxar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1579,\"values\":{\"codes\":\"[\\\"Kirkop\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1579\",\"name\":\"Kirkop\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1580,\"values\":{\"codes\":\"[\\\"Marsaskala\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1580\",\"name\":\"Marsaskala\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1581,\"values\":{\"codes\":\"[\\\"莱特省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1581\",\"name\":\"莱特省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1582,\"values\":{\"codes\":\"[\\\"丰田\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1582\",\"name\":\"丰田\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1583,\"values\":{\"codes\":\"[\\\"滨松\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1583\",\"name\":\"滨松\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1584,\"values\":{\"codes\":\"[\\\"哥打巴托省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1584\",\"name\":\"哥打巴托省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1585,\"values\":{\"codes\":\"[\\\"北达沃省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1585\",\"name\":\"北达沃省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1586,\"values\":{\"codes\":\"[\\\"卡坦端内斯省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1586\",\"name\":\"卡坦端内斯省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1587,\"values\":{\"codes\":\"[\\\"马林杜克省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1587\",\"name\":\"马林杜克省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1588,\"values\":{\"codes\":\"[\\\"甲洞\\\"]\",\"countryId\":\"12\",\"dataId\":\"\",\"id\":\"1588\",\"name\":\"甲洞\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1589,\"values\":{\"codes\":\"[\\\"北甘马粦省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1589\",\"name\":\"北甘马粦省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1590,\"values\":{\"codes\":\"[\\\"北三宝颜省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1590\",\"name\":\"北三宝颜省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1591,\"values\":{\"codes\":\"[\\\"东米萨米斯省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1591\",\"name\":\"东米萨米斯省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1592,\"values\":{\"codes\":\"[\\\"西米萨米斯省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1592\",\"name\":\"西米萨米斯省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1593,\"values\":{\"codes\":\"[\\\"南三宝颜省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1593\",\"name\":\"南三宝颜省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1594,\"values\":{\"codes\":\"[\\\"Azad-Kashmir\\\"]\",\"countryId\":\"21\",\"dataId\":\"\",\"id\":\"1594\",\"name\":\"Azad-Kashmir\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1595,\"values\":{\"codes\":\"[\\\"康波斯特拉谷省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1595\",\"name\":\"康波斯特拉谷省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1596,\"values\":{\"codes\":\"[\\\"南苏里高省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1596\",\"name\":\"南苏里高省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1597,\"values\":{\"codes\":\"[\\\"马京达瑙省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1597\",\"name\":\"马京达瑙省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1598,\"values\":{\"codes\":\"[\\\"大津\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1598\",\"name\":\"大津\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1599,\"values\":{\"codes\":\"[\\\"保和省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1599\",\"name\":\"保和省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1600,\"values\":{\"codes\":\"[\\\"苏丹库达拉省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1600\",\"name\":\"苏丹库达拉省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1601,\"values\":{\"codes\":\"[\\\"达沃省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1601\",\"name\":\"达沃省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1602,\"values\":{\"codes\":\"[\\\"北阿古桑省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1602\",\"name\":\"北阿古桑省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1603,\"values\":{\"codes\":\"[\\\"锡基霍尔省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1603\",\"name\":\"锡基霍尔省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1604,\"values\":{\"codes\":\"[\\\"萨兰加尼省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1604\",\"name\":\"萨兰加尼省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1605,\"values\":{\"codes\":\"[\\\"南阿古桑省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1605\",\"name\":\"南阿古桑省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1606,\"values\":{\"codes\":\"[\\\"萨马省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1606\",\"name\":\"萨马省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1607,\"values\":{\"codes\":\"[\\\"北苏里高省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1607\",\"name\":\"北苏里高省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1608,\"values\":{\"codes\":\"[\\\"民都洛省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1608\",\"name\":\"民都洛省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1609,\"values\":{\"codes\":\"[\\\"北萨马省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1609\",\"name\":\"北萨马省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1610,\"values\":{\"codes\":\"[\\\"北伊罗戈省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1610\",\"name\":\"北伊罗戈省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1611,\"values\":{\"codes\":\"[\\\"三宝颜锡布格省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1611\",\"name\":\"三宝颜锡布格省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1612,\"values\":{\"codes\":\"[\\\"卡林阿省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1612\",\"name\":\"卡林阿省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1613,\"values\":{\"codes\":\"[\\\"四日市\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1613\",\"name\":\"四日市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1614,\"values\":{\"codes\":\"[\\\"Vejle\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"1614\",\"name\":\"Vejle\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1615,\"values\":{\"codes\":\"[\\\"Rieti\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1615\",\"name\":\"Rieti\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1616,\"values\":{\"codes\":\"[\\\"Tucuman\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1616\",\"name\":\"Tucuman\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1617,\"values\":{\"codes\":\"[\\\"Jujuy\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1617\",\"name\":\"Jujuy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1618,\"values\":{\"codes\":\"[\\\"Guaira\\\"]\",\"countryId\":\"213\",\"dataId\":\"\",\"id\":\"1618\",\"name\":\"Guaira\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1619,\"values\":{\"codes\":\"[\\\"Caaguazu\\\"]\",\"countryId\":\"213\",\"dataId\":\"\",\"id\":\"1619\",\"name\":\"Caaguazu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1620,\"values\":{\"codes\":\"[\\\"Stockport\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1620\",\"name\":\"Stockport\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1621,\"values\":{\"codes\":\"[\\\"West-Vlaanderen\\\"]\",\"countryId\":\"72\",\"dataId\":\"\",\"id\":\"1621\",\"name\":\"West-Vlaanderen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1622,\"values\":{\"codes\":\"[\\\"Ceredigion\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1622\",\"name\":\"Ceredigion\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1623,\"values\":{\"codes\":\"[\\\"Tirol\\\"]\",\"countryId\":\"66\",\"dataId\":\"\",\"id\":\"1623\",\"name\":\"Tirol\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1624,\"values\":{\"codes\":\"[\\\"Eastern-Cape\\\"]\",\"countryId\":\"133\",\"dataId\":\"\",\"id\":\"1624\",\"name\":\"Eastern-Cape\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1625,\"values\":{\"codes\":\"[\\\"Chania\\\"]\",\"countryId\":\"81\",\"dataId\":\"\",\"id\":\"1625\",\"name\":\"Chania\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1626,\"values\":{\"codes\":\"[\\\"Kyustendil\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1626\",\"name\":\"Kyustendil\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1627,\"values\":{\"codes\":\"[\\\"Malatya\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1627\",\"name\":\"Malatya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1628,\"values\":{\"codes\":\"[\\\"anakkale\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1628\",\"name\":\"anakkale\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1629,\"values\":{\"codes\":\"[\\\"Kastamonu\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1629\",\"name\":\"Kastamonu\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1630,\"values\":{\"codes\":\"[\\\"Pordenone\\\"]\",\"countryId\":\"85\",\"dataId\":\"\",\"id\":\"1630\",\"name\":\"Pordenone\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1631,\"values\":{\"codes\":\"[\\\"Burdur\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1631\",\"name\":\"Burdur\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1632,\"values\":{\"codes\":\"[\\\"As-Sulaymaniyah\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"1632\",\"name\":\"As-Sulaymaniyah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1633,\"values\":{\"codes\":\"[\\\"川崎\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1633\",\"name\":\"川崎\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1634,\"values\":{\"codes\":\"[\\\"San-Juan\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1634\",\"name\":\"San-Juan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1635,\"values\":{\"codes\":\"[\\\"La-Vega\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1635\",\"name\":\"La-Vega\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1636,\"values\":{\"codes\":\"[\\\"Valle-del-Cauca\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1636\",\"name\":\"Valle-del-Cauca\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1637,\"values\":{\"codes\":\"[\\\"Salamat\\\"]\",\"countryId\":\"224\",\"dataId\":\"\",\"id\":\"1637\",\"name\":\"Salamat\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1638,\"values\":{\"codes\":\"[\\\"Sila\\\"]\",\"countryId\":\"224\",\"dataId\":\"\",\"id\":\"1638\",\"name\":\"Sila\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1639,\"values\":{\"codes\":\"[\\\"Bouira\\\"]\",\"countryId\":\"96\",\"dataId\":\"\",\"id\":\"1639\",\"name\":\"Bouira\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1640,\"values\":{\"codes\":\"[\\\"Arusha\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1640\",\"name\":\"Arusha\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1641,\"values\":{\"codes\":\"[\\\"Tanga\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1641\",\"name\":\"Tanga\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1642,\"values\":{\"codes\":\"[\\\"Kigoma\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1642\",\"name\":\"Kigoma\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1643,\"values\":{\"codes\":\"[\\\"Jan-Mayen\\\"]\",\"countryId\":\"51\",\"dataId\":\"\",\"id\":\"1643\",\"name\":\"Jan-Mayen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1644,\"values\":{\"codes\":\"[\\\"鹤冈\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1644\",\"name\":\"鹤冈\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1645,\"values\":{\"codes\":\"[\\\"Monastir\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1645\",\"name\":\"Monastir\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1646,\"values\":{\"codes\":\"[\\\"松本\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1646\",\"name\":\"松本\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1647,\"values\":{\"codes\":\"[\\\"Huila\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1647\",\"name\":\"Huila\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1648,\"values\":{\"codes\":\"[\\\"Arica-y-Parinacota\\\"]\",\"countryId\":\"210\",\"dataId\":\"\",\"id\":\"1648\",\"name\":\"Arica-y-Parinacota\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1649,\"values\":{\"codes\":\"[\\\"姬路\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1649\",\"name\":\"姬路\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1650,\"values\":{\"codes\":\"[\\\"会津若松\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1650\",\"name\":\"会津若松\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1651,\"values\":{\"codes\":\"[\\\"Bizerte\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1651\",\"name\":\"Bizerte\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1652,\"values\":{\"codes\":\"[\\\"Bolivar\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1652\",\"name\":\"Bolivar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1653,\"values\":{\"codes\":\"[\\\"Siem-Reab\\\"]\",\"countryId\":\"9\",\"dataId\":\"\",\"id\":\"1653\",\"name\":\"Siem-Reab\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1654,\"values\":{\"codes\":\"[\\\"Al-Wakrah\\\"]\",\"countryId\":\"39\",\"dataId\":\"\",\"id\":\"1654\",\"name\":\"Al-Wakrah\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1655,\"values\":{\"codes\":\"[\\\"Elaz\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1655\",\"name\":\"Elaz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1656,\"values\":{\"codes\":\"[\\\"rnak\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1656\",\"name\":\"rnak\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1657,\"values\":{\"codes\":\"[\\\"Paraiba\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1657\",\"name\":\"Paraiba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1658,\"values\":{\"codes\":\"[\\\"Aqmola\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"1658\",\"name\":\"Aqmola\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1659,\"values\":{\"codes\":\"[\\\"Razgrad\\\"]\",\"countryId\":\"77\",\"dataId\":\"\",\"id\":\"1659\",\"name\":\"Razgrad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1660,\"values\":{\"codes\":\"[\\\"Santa-Ana\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1660\",\"name\":\"Santa-Ana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1661,\"values\":{\"codes\":\"[\\\"La-Libertad\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1661\",\"name\":\"La-Libertad\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1662,\"values\":{\"codes\":\"[\\\"Sonsonate\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1662\",\"name\":\"Sonsonate\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1663,\"values\":{\"codes\":\"[\\\"San-Miguel\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1663\",\"name\":\"San-Miguel\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1664,\"values\":{\"codes\":\"[\\\"Casanare\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1664\",\"name\":\"Casanare\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1665,\"values\":{\"codes\":\"[\\\"San-Juan\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1665\",\"name\":\"San-Juan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1666,\"values\":{\"codes\":\"[\\\"Tierra-del-Fuego\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1666\",\"name\":\"Tierra-del-Fuego\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1667,\"values\":{\"codes\":\"[\\\"La-Pampa\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1667\",\"name\":\"La-Pampa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1668,\"values\":{\"codes\":\"[\\\"Neuquen\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1668\",\"name\":\"Neuquen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1669,\"values\":{\"codes\":\"[\\\"明古鲁\\\"]\",\"countryId\":\"15\",\"dataId\":\"\",\"id\":\"1669\",\"name\":\"明古鲁\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1670,\"values\":{\"codes\":\"[\\\"Monte-Cristi\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1670\",\"name\":\"Monte-Cristi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1671,\"values\":{\"codes\":\"[\\\"Cuyuni-Mazaruni\\\"]\",\"countryId\":\"203\",\"dataId\":\"\",\"id\":\"1671\",\"name\":\"Cuyuni-Mazaruni\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1672,\"values\":{\"codes\":\"[\\\"Sucre\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1672\",\"name\":\"Sucre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1673,\"values\":{\"codes\":\"[\\\"Caldas\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1673\",\"name\":\"Caldas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1674,\"values\":{\"codes\":\"[\\\"Meta\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1674\",\"name\":\"Meta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1675,\"values\":{\"codes\":\"[\\\"Risaralda\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1675\",\"name\":\"Risaralda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1676,\"values\":{\"codes\":\"[\\\"Quindio\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1676\",\"name\":\"Quindio\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1677,\"values\":{\"codes\":\"[\\\"Norte-de-Santander\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1677\",\"name\":\"Norte-de-Santander\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1678,\"values\":{\"codes\":\"[\\\"Cesar\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1678\",\"name\":\"Cesar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1679,\"values\":{\"codes\":\"[\\\"La-Guajira\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1679\",\"name\":\"La-Guajira\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1680,\"values\":{\"codes\":\"[\\\"Gracias-a-Dios\\\"]\",\"countryId\":\"172\",\"dataId\":\"\",\"id\":\"1680\",\"name\":\"Gracias-a-Dios\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1681,\"values\":{\"codes\":\"[\\\"Heredia\\\"]\",\"countryId\":\"174\",\"dataId\":\"\",\"id\":\"1681\",\"name\":\"Heredia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1682,\"values\":{\"codes\":\"[\\\"Xiangkhoang\\\"]\",\"countryId\":\"8\",\"dataId\":\"\",\"id\":\"1682\",\"name\":\"Xiangkhoang\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1683,\"values\":{\"codes\":\"[\\\"Champasak\\\"]\",\"countryId\":\"8\",\"dataId\":\"\",\"id\":\"1683\",\"name\":\"Champasak\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1684,\"values\":{\"codes\":\"[\\\"Pisek\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1684\",\"name\":\"Pisek\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1685,\"values\":{\"codes\":\"[\\\"Arbil\\\"]\",\"countryId\":\"30\",\"dataId\":\"\",\"id\":\"1685\",\"name\":\"Arbil\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1686,\"values\":{\"codes\":\"[\\\"Viborg\\\"]\",\"countryId\":\"53\",\"dataId\":\"\",\"id\":\"1686\",\"name\":\"Viborg\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1687,\"values\":{\"codes\":\"[\\\"Sankt-Gallen\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"1687\",\"name\":\"Sankt-Gallen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1688,\"values\":{\"codes\":\"[\\\"Jerusalem\\\"]\",\"countryId\":\"36\",\"dataId\":\"\",\"id\":\"1688\",\"name\":\"Jerusalem\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1689,\"values\":{\"codes\":\"[\\\"Vaduz\\\"]\",\"countryId\":\"68\",\"dataId\":\"\",\"id\":\"1689\",\"name\":\"Vaduz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1690,\"values\":{\"codes\":\"[\\\"Ruggell\\\"]\",\"countryId\":\"68\",\"dataId\":\"\",\"id\":\"1690\",\"name\":\"Ruggell\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1691,\"values\":{\"codes\":\"[\\\"Prostejov\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1691\",\"name\":\"Prostejov\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1692,\"values\":{\"codes\":\"[\\\"Pyrenees-Atlantiques\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1692\",\"name\":\"Pyrenees-Atlantiques\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1693,\"values\":{\"codes\":\"[\\\"Bruntal\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1693\",\"name\":\"Bruntal\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1694,\"values\":{\"codes\":\"[\\\"Kilis\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1694\",\"name\":\"Kilis\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1695,\"values\":{\"codes\":\"[\\\"布什尔\\\"]\",\"countryId\":\"31\",\"dataId\":\"\",\"id\":\"1695\",\"name\":\"布什尔\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1696,\"values\":{\"codes\":\"[\\\"克尔曼\\\"]\",\"countryId\":\"31\",\"dataId\":\"\",\"id\":\"1696\",\"name\":\"克尔曼\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1697,\"values\":{\"codes\":\"[\\\"法尔斯\\\"]\",\"countryId\":\"31\",\"dataId\":\"\",\"id\":\"1697\",\"name\":\"法尔斯\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1698,\"values\":{\"codes\":\"[\\\"Plzen-sever\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1698\",\"name\":\"Plzen-sever\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1699,\"values\":{\"codes\":\"[\\\"Qostanay\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"1699\",\"name\":\"Qostanay\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1700,\"values\":{\"codes\":\"[\\\"Masaya\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1700\",\"name\":\"Masaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1701,\"values\":{\"codes\":\"[\\\"Carazo\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1701\",\"name\":\"Carazo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1702,\"values\":{\"codes\":\"[\\\"Rivas\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1702\",\"name\":\"Rivas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1703,\"values\":{\"codes\":\"[\\\"Matagalpa\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1703\",\"name\":\"Matagalpa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1704,\"values\":{\"codes\":\"[\\\"Cordoba\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1704\",\"name\":\"Cordoba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1705,\"values\":{\"codes\":\"[\\\"San-Pedro-de-Macoris\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1705\",\"name\":\"San-Pedro-de-Macoris\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1706,\"values\":{\"codes\":\"[\\\"Caqueta\\\"]\",\"countryId\":\"201\",\"dataId\":\"\",\"id\":\"1706\",\"name\":\"Caqueta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1707,\"values\":{\"codes\":\"[\\\"La-Romana\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1707\",\"name\":\"La-Romana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1708,\"values\":{\"codes\":\"[\\\"Maria-Trinidad-Sanchez\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1708\",\"name\":\"Maria-Trinidad-Sanchez\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1709,\"values\":{\"codes\":\"[\\\"Duarte\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1709\",\"name\":\"Duarte\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1710,\"values\":{\"codes\":\"[\\\"Barinas\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1710\",\"name\":\"Barinas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1711,\"values\":{\"codes\":\"[\\\"Monagas\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1711\",\"name\":\"Monagas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1712,\"values\":{\"codes\":\"[\\\"Ungheni\\\"]\",\"countryId\":\"60\",\"dataId\":\"\",\"id\":\"1712\",\"name\":\"Ungheni\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1713,\"values\":{\"codes\":\"[\\\"Karachayevo-Cherkesskaya\\\"]\",\"countryId\":\"58\",\"dataId\":\"\",\"id\":\"1713\",\"name\":\"Karachayevo-Cherkesskaya\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1714,\"values\":{\"codes\":\"[\\\"Mdina\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1714\",\"name\":\"Mdina\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1715,\"values\":{\"codes\":\"[\\\"Mqabba\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1715\",\"name\":\"Mqabba\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1716,\"values\":{\"codes\":\"[\\\"Safi\\\"]\",\"countryId\":\"88\",\"dataId\":\"\",\"id\":\"1716\",\"name\":\"Safi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1717,\"values\":{\"codes\":\"[\\\"Imbabura\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1717\",\"name\":\"Imbabura\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1718,\"values\":{\"codes\":\"[\\\"Morazan\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1718\",\"name\":\"Morazan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1719,\"values\":{\"codes\":\"[\\\"La-Paz\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1719\",\"name\":\"La-Paz\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1720,\"values\":{\"codes\":\"[\\\"Upper-Demerara-Berbice\\\"]\",\"countryId\":\"203\",\"dataId\":\"\",\"id\":\"1720\",\"name\":\"Upper-Demerara-Berbice\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1721,\"values\":{\"codes\":\"[\\\"Upper-Takutu-Upper-Essequibo\\\"]\",\"countryId\":\"203\",\"dataId\":\"\",\"id\":\"1721\",\"name\":\"Upper-Takutu-Upper-Essequibo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1722,\"values\":{\"codes\":\"[\\\"Puerto-Plata\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1722\",\"name\":\"Puerto-Plata\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1723,\"values\":{\"codes\":\"[\\\"Ahuachapan\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1723\",\"name\":\"Ahuachapan\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1724,\"values\":{\"codes\":\"[\\\"Alajuela\\\"]\",\"countryId\":\"174\",\"dataId\":\"\",\"id\":\"1724\",\"name\":\"Alajuela\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1725,\"values\":{\"codes\":\"[\\\"El-Beni\\\"]\",\"countryId\":\"208\",\"dataId\":\"\",\"id\":\"1725\",\"name\":\"El-Beni\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1726,\"values\":{\"codes\":\"[\\\"Colon\\\"]\",\"countryId\":\"172\",\"dataId\":\"\",\"id\":\"1726\",\"name\":\"Colon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1727,\"values\":{\"codes\":\"[\\\"Loja\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1727\",\"name\":\"Loja\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1728,\"values\":{\"codes\":\"[\\\"Amapa\\\"]\",\"countryId\":\"209\",\"dataId\":\"\",\"id\":\"1728\",\"name\":\"Amapa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1729,\"values\":{\"codes\":\"[\\\"Pedernales\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1729\",\"name\":\"Pedernales\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1730,\"values\":{\"codes\":\"[\\\"Peravia\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1730\",\"name\":\"Peravia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1731,\"values\":{\"codes\":\"[\\\"Merida\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1731\",\"name\":\"Merida\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1732,\"values\":{\"codes\":\"[\\\"Boaco\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1732\",\"name\":\"Boaco\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1733,\"values\":{\"codes\":\"[\\\"Nueva-Segovia\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1733\",\"name\":\"Nueva-Segovia\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1734,\"values\":{\"codes\":\"[\\\"Esteli\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1734\",\"name\":\"Esteli\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1735,\"values\":{\"codes\":\"[\\\"Leon\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1735\",\"name\":\"Leon\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1736,\"values\":{\"codes\":\"[\\\"Chontales\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1736\",\"name\":\"Chontales\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1737,\"values\":{\"codes\":\"[\\\"Granada\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1737\",\"name\":\"Granada\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1738,\"values\":{\"codes\":\"[\\\"Esmeraldas\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1738\",\"name\":\"Esmeraldas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1739,\"values\":{\"codes\":\"[\\\"North-East-Lincolnshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1739\",\"name\":\"North-East-Lincolnshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1740,\"values\":{\"codes\":\"[\\\"Telford-and-Wrekin\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1740\",\"name\":\"Telford-and-Wrekin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1741,\"values\":{\"codes\":\"[\\\"Down\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1741\",\"name\":\"Down\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1742,\"values\":{\"codes\":\"[\\\"Hartlepool\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1742\",\"name\":\"Hartlepool\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1743,\"values\":{\"codes\":\"[\\\"Herefordshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1743\",\"name\":\"Herefordshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1744,\"values\":{\"codes\":\"[\\\"South-Lanarkshire\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1744\",\"name\":\"South-Lanarkshire\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1745,\"values\":{\"codes\":\"[\\\"Indre\\\"]\",\"countryId\":\"74\",\"dataId\":\"\",\"id\":\"1745\",\"name\":\"Indre\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1746,\"values\":{\"codes\":\"[\\\"Appenzell-Innerrhoden\\\"]\",\"countryId\":\"67\",\"dataId\":\"\",\"id\":\"1746\",\"name\":\"Appenzell-Innerrhoden\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1747,\"values\":{\"codes\":\"[\\\"Eschen\\\"]\",\"countryId\":\"68\",\"dataId\":\"\",\"id\":\"1747\",\"name\":\"Eschen\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1748,\"values\":{\"codes\":\"[\\\"Balzers\\\"]\",\"countryId\":\"68\",\"dataId\":\"\",\"id\":\"1748\",\"name\":\"Balzers\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1749,\"values\":{\"codes\":\"[\\\"Angus\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1749\",\"name\":\"Angus\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1750,\"values\":{\"codes\":\"[\\\"Praha-11\\\"]\",\"countryId\":\"62\",\"dataId\":\"\",\"id\":\"1750\",\"name\":\"Praha-11\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1751,\"values\":{\"codes\":\"[\\\"Krapinsko-zagorska\\\"]\",\"countryId\":\"83\",\"dataId\":\"\",\"id\":\"1751\",\"name\":\"Krapinsko-zagorska\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1752,\"values\":{\"codes\":\"[\\\"Newham\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1752\",\"name\":\"Newham\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1753,\"values\":{\"codes\":\"[\\\"Tameside\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1753\",\"name\":\"Tameside\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1754,\"values\":{\"codes\":\"[\\\"Bury\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1754\",\"name\":\"Bury\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1755,\"values\":{\"codes\":\"[\\\"Santarem\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1755\",\"name\":\"Santarem\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1756,\"values\":{\"codes\":\"[\\\"Ogun\\\"]\",\"countryId\":\"221\",\"dataId\":\"\",\"id\":\"1756\",\"name\":\"Ogun\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1757,\"values\":{\"codes\":\"[\\\"Ouaka\\\"]\",\"countryId\":\"226\",\"dataId\":\"\",\"id\":\"1757\",\"name\":\"Ouaka\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1758,\"values\":{\"codes\":\"[\\\"Mbomou\\\"]\",\"countryId\":\"226\",\"dataId\":\"\",\"id\":\"1758\",\"name\":\"Mbomou\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1759,\"values\":{\"codes\":\"[\\\"Sangha\\\"]\",\"countryId\":\"226\",\"dataId\":\"\",\"id\":\"1759\",\"name\":\"Sangha\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1760,\"values\":{\"codes\":\"[\\\"Illizi\\\"]\",\"countryId\":\"96\",\"dataId\":\"\",\"id\":\"1760\",\"name\":\"Illizi\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1761,\"values\":{\"codes\":\"[\\\"Mwanza\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1761\",\"name\":\"Mwanza\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1762,\"values\":{\"codes\":\"[\\\"Dodoma\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1762\",\"name\":\"Dodoma\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1763,\"values\":{\"codes\":\"[\\\"Plaines-Wilhems\\\"]\",\"countryId\":\"138\",\"dataId\":\"\",\"id\":\"1763\",\"name\":\"Plaines-Wilhems\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1764,\"values\":{\"codes\":\"[\\\"Ariana\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1764\",\"name\":\"Ariana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1765,\"values\":{\"codes\":\"[\\\"Medenine\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1765\",\"name\":\"Medenine\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1766,\"values\":{\"codes\":\"[\\\"Sousse\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1766\",\"name\":\"Sousse\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1767,\"values\":{\"codes\":\"[\\\"Tozeur\\\"]\",\"countryId\":\"95\",\"dataId\":\"\",\"id\":\"1767\",\"name\":\"Tozeur\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1768,\"values\":{\"codes\":\"[\\\"Nador\\\"]\",\"countryId\":\"97\",\"dataId\":\"\",\"id\":\"1768\",\"name\":\"Nador\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1769,\"values\":{\"codes\":\"[\\\"Antsiranana\\\"]\",\"countryId\":\"136\",\"dataId\":\"\",\"id\":\"1769\",\"name\":\"Antsiranana\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1770,\"values\":{\"codes\":\"[\\\"Ruvuma\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1770\",\"name\":\"Ruvuma\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1771,\"values\":{\"codes\":\"[\\\"Pemba-South\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1771\",\"name\":\"Pemba-South\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1772,\"values\":{\"codes\":\"[\\\"Kagera\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1772\",\"name\":\"Kagera\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1773,\"values\":{\"codes\":\"[\\\"Rukwa\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1773\",\"name\":\"Rukwa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1774,\"values\":{\"codes\":\"[\\\"Zanzibar-North\\\"]\",\"countryId\":\"105\",\"dataId\":\"\",\"id\":\"1774\",\"name\":\"Zanzibar-North\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1775,\"values\":{\"codes\":\"[\\\"Brazzaville\\\"]\",\"countryId\":\"225\",\"dataId\":\"\",\"id\":\"1775\",\"name\":\"Brazzaville\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1776,\"values\":{\"codes\":\"[\\\"Sangha\\\"]\",\"countryId\":\"225\",\"dataId\":\"\",\"id\":\"1776\",\"name\":\"Sangha\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1777,\"values\":{\"codes\":\"[\\\"Upper-East\\\"]\",\"countryId\":\"121\",\"dataId\":\"\",\"id\":\"1777\",\"name\":\"Upper-East\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1778,\"values\":{\"codes\":\"[\\\"Central\\\"]\",\"countryId\":\"121\",\"dataId\":\"\",\"id\":\"1778\",\"name\":\"Central\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1779,\"values\":{\"codes\":\"[\\\"Araucania\\\"]\",\"countryId\":\"210\",\"dataId\":\"\",\"id\":\"1779\",\"name\":\"Araucania\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1780,\"values\":{\"codes\":\"[\\\"Ar\\\"]\",\"countryId\":\"47\",\"dataId\":\"\",\"id\":\"1780\",\"name\":\"Ar\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1781,\"values\":{\"codes\":\"[\\\"Antofagasta\\\"]\",\"countryId\":\"210\",\"dataId\":\"\",\"id\":\"1781\",\"name\":\"Antofagasta\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1782,\"values\":{\"codes\":\"[\\\"Chinandega\\\"]\",\"countryId\":\"173\",\"dataId\":\"\",\"id\":\"1782\",\"name\":\"Chinandega\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1783,\"values\":{\"codes\":\"[\\\"Cojedes\\\"]\",\"countryId\":\"202\",\"dataId\":\"\",\"id\":\"1783\",\"name\":\"Cojedes\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1784,\"values\":{\"codes\":\"[\\\"Salcedo\\\"]\",\"countryId\":\"180\",\"dataId\":\"\",\"id\":\"1784\",\"name\":\"Salcedo\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1785,\"values\":{\"codes\":\"[\\\"El-Oro\\\"]\",\"countryId\":\"206\",\"dataId\":\"\",\"id\":\"1785\",\"name\":\"El-Oro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1786,\"values\":{\"codes\":\"[\\\"Yoro\\\"]\",\"countryId\":\"172\",\"dataId\":\"\",\"id\":\"1786\",\"name\":\"Yoro\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1787,\"values\":{\"codes\":\"[\\\"San-Martin\\\"]\",\"countryId\":\"207\",\"dataId\":\"\",\"id\":\"1787\",\"name\":\"San-Martin\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1788,\"values\":{\"codes\":\"[\\\"Chalatenango\\\"]\",\"countryId\":\"171\",\"dataId\":\"\",\"id\":\"1788\",\"name\":\"Chalatenango\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1789,\"values\":{\"codes\":\"[\\\"Santiago-del-Estero\\\"]\",\"countryId\":\"211\",\"dataId\":\"\",\"id\":\"1789\",\"name\":\"Santiago-del-Estero\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1790,\"values\":{\"codes\":\"[\\\"奥罗拉省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1790\",\"name\":\"奥罗拉省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1791,\"values\":{\"codes\":\"[\\\"Lhaviyani\\\"]\",\"countryId\":\"23\",\"dataId\":\"\",\"id\":\"1791\",\"name\":\"Lhaviyani\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1792,\"values\":{\"codes\":\"[\\\"旭川\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1792\",\"name\":\"旭川\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1793,\"values\":{\"codes\":\"[\\\"别府\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1793\",\"name\":\"别府\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1794,\"values\":{\"codes\":\"[\\\"东达沃省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1794\",\"name\":\"东达沃省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1795,\"values\":{\"codes\":\"[\\\"伊富高省\\\"]\",\"countryId\":\"6\",\"dataId\":\"\",\"id\":\"1795\",\"name\":\"伊富高省\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1796,\"values\":{\"codes\":\"[\\\"堺\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1796\",\"name\":\"堺\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1797,\"values\":{\"codes\":\"[\\\"Raplamaa\\\"]\",\"countryId\":\"54\",\"dataId\":\"\",\"id\":\"1797\",\"name\":\"Raplamaa\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1798,\"values\":{\"codes\":\"[\\\"Zhambyl\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"1798\",\"name\":\"Zhambyl\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1799,\"values\":{\"codes\":\"[\\\"Qyzylorda\\\"]\",\"countryId\":\"24\",\"dataId\":\"\",\"id\":\"1799\",\"name\":\"Qyzylorda\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1800,\"values\":{\"codes\":\"[\\\"Conwy\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1800\",\"name\":\"Conwy\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1801,\"values\":{\"codes\":\"[\\\"Dumfries-and-Galloway\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1801\",\"name\":\"Dumfries-and-Galloway\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1802,\"values\":{\"codes\":\"[\\\"Scottish-Borders\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1802\",\"name\":\"Scottish-Borders\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1803,\"values\":{\"codes\":\"[\\\"Jelgavas\\\"]\",\"countryId\":\"55\",\"dataId\":\"\",\"id\":\"1803\",\"name\":\"Jelgavas\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1804,\"values\":{\"codes\":\"[\\\"Beja\\\"]\",\"countryId\":\"90\",\"dataId\":\"\",\"id\":\"1804\",\"name\":\"Beja\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1805,\"values\":{\"codes\":\"[\\\"Torbay\\\"]\",\"countryId\":\"69\",\"dataId\":\"\",\"id\":\"1805\",\"name\":\"Torbay\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1806,\"values\":{\"codes\":\"[\\\"长门\\\"]\",\"countryId\":\"5\",\"dataId\":\"\",\"id\":\"1806\",\"name\":\"长门\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"countryId\"],\"exceptFields\":[\"customName\",\"customCodes\"]}]},{\"name\":\"edgeRegionTowns\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeRegionTowns` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `cityId` int(11) unsigned DEFAULT '0' COMMENT '城市ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `codes` json DEFAULT NULL COMMENT '代号',\\n `customName` varchar(255) DEFAULT NULL COMMENT '自定义名称',\\n `customCodes` json DEFAULT NULL COMMENT '自定义代号',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `dataId` varchar(255) DEFAULT NULL COMMENT '原始数据ID',\\n PRIMARY KEY (`id`),\\n KEY `cityId` (`cityId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-省份'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"cityId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '城市ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"codes\",\"definition\":\"json COMMENT '代号'\"},{\"name\":\"customName\",\"definition\":\"varchar(255) COMMENT '自定义名称'\"},{\"name\":\"customCodes\",\"definition\":\"json COMMENT '自定义代号'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"dataId\",\"definition\":\"varchar(255) COMMENT '原始数据ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"cityId\",\"definition\":\"KEY `cityId` (`cityId`) USING BTREE\"}],\"records\":[{\"id\":1,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"东城区\\\"]\",\"dataId\":\"\",\"id\":\"1\",\"name\":\"东城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"西城区\\\"]\",\"dataId\":\"\",\"id\":\"2\",\"name\":\"西城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":3,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"崇文区\\\"]\",\"dataId\":\"\",\"id\":\"3\",\"name\":\"崇文区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":4,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"宣武区\\\"]\",\"dataId\":\"\",\"id\":\"4\",\"name\":\"宣武区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":5,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"朝阳区\\\"]\",\"dataId\":\"\",\"id\":\"5\",\"name\":\"朝阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":6,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"丰台区\\\"]\",\"dataId\":\"\",\"id\":\"6\",\"name\":\"丰台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":7,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"石景山区\\\"]\",\"dataId\":\"\",\"id\":\"7\",\"name\":\"石景山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":8,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"海淀区\\\"]\",\"dataId\":\"\",\"id\":\"8\",\"name\":\"海淀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":9,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"门头沟区\\\"]\",\"dataId\":\"\",\"id\":\"9\",\"name\":\"门头沟区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":10,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"房山区\\\"]\",\"dataId\":\"\",\"id\":\"10\",\"name\":\"房山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":11,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"通州区\\\"]\",\"dataId\":\"\",\"id\":\"11\",\"name\":\"通州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":12,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"顺义区\\\"]\",\"dataId\":\"\",\"id\":\"12\",\"name\":\"顺义区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":13,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"昌平区\\\"]\",\"dataId\":\"\",\"id\":\"13\",\"name\":\"昌平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":14,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"大兴区\\\"]\",\"dataId\":\"\",\"id\":\"14\",\"name\":\"大兴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":15,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"怀柔区\\\"]\",\"dataId\":\"\",\"id\":\"15\",\"name\":\"怀柔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":16,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"平谷区\\\"]\",\"dataId\":\"\",\"id\":\"16\",\"name\":\"平谷区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":17,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"密云县\\\"]\",\"dataId\":\"\",\"id\":\"17\",\"name\":\"密云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":18,\"values\":{\"cityId\":\"1\",\"codes\":\"[\\\"延庆县\\\"]\",\"dataId\":\"\",\"id\":\"18\",\"name\":\"延庆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":19,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"和平区\\\"]\",\"dataId\":\"\",\"id\":\"19\",\"name\":\"和平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":20,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"河东区\\\"]\",\"dataId\":\"\",\"id\":\"20\",\"name\":\"河东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":21,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"河西区\\\"]\",\"dataId\":\"\",\"id\":\"21\",\"name\":\"河西区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":22,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"南开区\\\"]\",\"dataId\":\"\",\"id\":\"22\",\"name\":\"南开区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":23,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"河北区\\\"]\",\"dataId\":\"\",\"id\":\"23\",\"name\":\"河北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":24,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"红桥区\\\"]\",\"dataId\":\"\",\"id\":\"24\",\"name\":\"红桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":25,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"塘沽区\\\"]\",\"dataId\":\"\",\"id\":\"25\",\"name\":\"塘沽区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":26,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"汉沽区\\\"]\",\"dataId\":\"\",\"id\":\"26\",\"name\":\"汉沽区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":27,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"大港区\\\"]\",\"dataId\":\"\",\"id\":\"27\",\"name\":\"大港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":28,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"东丽区\\\"]\",\"dataId\":\"\",\"id\":\"28\",\"name\":\"东丽区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":29,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"西青区\\\"]\",\"dataId\":\"\",\"id\":\"29\",\"name\":\"西青区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":30,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"津南区\\\"]\",\"dataId\":\"\",\"id\":\"30\",\"name\":\"津南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":31,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"北辰区\\\"]\",\"dataId\":\"\",\"id\":\"31\",\"name\":\"北辰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":32,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"武清区\\\"]\",\"dataId\":\"\",\"id\":\"32\",\"name\":\"武清区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":33,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"宝坻区\\\"]\",\"dataId\":\"\",\"id\":\"33\",\"name\":\"宝坻区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":34,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"宁河县\\\"]\",\"dataId\":\"\",\"id\":\"34\",\"name\":\"宁河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":35,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"静海县\\\"]\",\"dataId\":\"\",\"id\":\"35\",\"name\":\"静海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":36,\"values\":{\"cityId\":\"2\",\"codes\":\"[\\\"蓟县\\\"]\",\"dataId\":\"\",\"id\":\"36\",\"name\":\"蓟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":37,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"长安区\\\"]\",\"dataId\":\"\",\"id\":\"37\",\"name\":\"长安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":38,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"桥东区\\\"]\",\"dataId\":\"\",\"id\":\"38\",\"name\":\"桥东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":39,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"桥西区\\\"]\",\"dataId\":\"\",\"id\":\"39\",\"name\":\"桥西区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":40,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"新华区\\\"]\",\"dataId\":\"\",\"id\":\"40\",\"name\":\"新华区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":41,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"井陉矿区\\\"]\",\"dataId\":\"\",\"id\":\"41\",\"name\":\"井陉矿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":42,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"裕华区\\\"]\",\"dataId\":\"\",\"id\":\"42\",\"name\":\"裕华区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":43,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"井陉县\\\"]\",\"dataId\":\"\",\"id\":\"43\",\"name\":\"井陉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":44,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"正定县\\\"]\",\"dataId\":\"\",\"id\":\"44\",\"name\":\"正定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":45,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"栾城县\\\"]\",\"dataId\":\"\",\"id\":\"45\",\"name\":\"栾城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":46,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"行唐县\\\"]\",\"dataId\":\"\",\"id\":\"46\",\"name\":\"行唐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":47,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"灵寿县\\\"]\",\"dataId\":\"\",\"id\":\"47\",\"name\":\"灵寿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":48,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"高邑县\\\"]\",\"dataId\":\"\",\"id\":\"48\",\"name\":\"高邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":49,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"深泽县\\\"]\",\"dataId\":\"\",\"id\":\"49\",\"name\":\"深泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":50,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"赞皇县\\\"]\",\"dataId\":\"\",\"id\":\"50\",\"name\":\"赞皇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":51,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"无极县\\\"]\",\"dataId\":\"\",\"id\":\"51\",\"name\":\"无极县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":52,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"平山县\\\"]\",\"dataId\":\"\",\"id\":\"52\",\"name\":\"平山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":53,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"元氏县\\\"]\",\"dataId\":\"\",\"id\":\"53\",\"name\":\"元氏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":54,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"赵县\\\"]\",\"dataId\":\"\",\"id\":\"54\",\"name\":\"赵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":55,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"辛集市\\\"]\",\"dataId\":\"\",\"id\":\"55\",\"name\":\"辛集市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":56,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"藁城市\\\"]\",\"dataId\":\"\",\"id\":\"56\",\"name\":\"藁城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":57,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"晋州市\\\"]\",\"dataId\":\"\",\"id\":\"57\",\"name\":\"晋州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":58,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"新乐市\\\"]\",\"dataId\":\"\",\"id\":\"58\",\"name\":\"新乐市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":59,\"values\":{\"cityId\":\"3\",\"codes\":\"[\\\"鹿泉市\\\"]\",\"dataId\":\"\",\"id\":\"59\",\"name\":\"鹿泉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":60,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"路南区\\\"]\",\"dataId\":\"\",\"id\":\"60\",\"name\":\"路南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":61,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"路北区\\\"]\",\"dataId\":\"\",\"id\":\"61\",\"name\":\"路北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":62,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"古冶区\\\"]\",\"dataId\":\"\",\"id\":\"62\",\"name\":\"古冶区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":63,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"开平区\\\"]\",\"dataId\":\"\",\"id\":\"63\",\"name\":\"开平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":64,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"丰南区\\\"]\",\"dataId\":\"\",\"id\":\"64\",\"name\":\"丰南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":65,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"丰润区\\\"]\",\"dataId\":\"\",\"id\":\"65\",\"name\":\"丰润区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":66,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"滦县\\\"]\",\"dataId\":\"\",\"id\":\"66\",\"name\":\"滦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":67,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"滦南县\\\"]\",\"dataId\":\"\",\"id\":\"67\",\"name\":\"滦南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":68,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"乐亭县\\\"]\",\"dataId\":\"\",\"id\":\"68\",\"name\":\"乐亭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":69,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"迁西县\\\"]\",\"dataId\":\"\",\"id\":\"69\",\"name\":\"迁西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":70,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"玉田县\\\"]\",\"dataId\":\"\",\"id\":\"70\",\"name\":\"玉田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":71,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"唐海县\\\"]\",\"dataId\":\"\",\"id\":\"71\",\"name\":\"唐海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":72,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"遵化市\\\"]\",\"dataId\":\"\",\"id\":\"72\",\"name\":\"遵化市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":73,\"values\":{\"cityId\":\"4\",\"codes\":\"[\\\"迁安市\\\"]\",\"dataId\":\"\",\"id\":\"73\",\"name\":\"迁安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":74,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"海港区\\\"]\",\"dataId\":\"\",\"id\":\"74\",\"name\":\"海港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":75,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"山海关区\\\"]\",\"dataId\":\"\",\"id\":\"75\",\"name\":\"山海关区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":76,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"北戴河区\\\"]\",\"dataId\":\"\",\"id\":\"76\",\"name\":\"北戴河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":77,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"青龙满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"77\",\"name\":\"青龙满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":78,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"昌黎县\\\"]\",\"dataId\":\"\",\"id\":\"78\",\"name\":\"昌黎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":79,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"抚宁县\\\"]\",\"dataId\":\"\",\"id\":\"79\",\"name\":\"抚宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":80,\"values\":{\"cityId\":\"5\",\"codes\":\"[\\\"卢龙县\\\"]\",\"dataId\":\"\",\"id\":\"80\",\"name\":\"卢龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":81,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"邯山区\\\"]\",\"dataId\":\"\",\"id\":\"81\",\"name\":\"邯山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":82,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"丛台区\\\"]\",\"dataId\":\"\",\"id\":\"82\",\"name\":\"丛台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":83,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"复兴区\\\"]\",\"dataId\":\"\",\"id\":\"83\",\"name\":\"复兴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":84,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"峰峰矿区\\\"]\",\"dataId\":\"\",\"id\":\"84\",\"name\":\"峰峰矿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":85,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"邯郸县\\\"]\",\"dataId\":\"\",\"id\":\"85\",\"name\":\"邯郸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":86,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"临漳县\\\"]\",\"dataId\":\"\",\"id\":\"86\",\"name\":\"临漳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":87,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"成安县\\\"]\",\"dataId\":\"\",\"id\":\"87\",\"name\":\"成安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":88,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"大名县\\\"]\",\"dataId\":\"\",\"id\":\"88\",\"name\":\"大名县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":89,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"涉县\\\"]\",\"dataId\":\"\",\"id\":\"89\",\"name\":\"涉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":90,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"磁县\\\"]\",\"dataId\":\"\",\"id\":\"90\",\"name\":\"磁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":91,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"肥乡县\\\"]\",\"dataId\":\"\",\"id\":\"91\",\"name\":\"肥乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":92,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"永年县\\\"]\",\"dataId\":\"\",\"id\":\"92\",\"name\":\"永年县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":93,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"邱县\\\"]\",\"dataId\":\"\",\"id\":\"93\",\"name\":\"邱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":94,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"鸡泽县\\\"]\",\"dataId\":\"\",\"id\":\"94\",\"name\":\"鸡泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":95,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"广平县\\\"]\",\"dataId\":\"\",\"id\":\"95\",\"name\":\"广平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":96,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"馆陶县\\\"]\",\"dataId\":\"\",\"id\":\"96\",\"name\":\"馆陶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":97,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"魏县\\\"]\",\"dataId\":\"\",\"id\":\"97\",\"name\":\"魏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":98,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"曲周县\\\"]\",\"dataId\":\"\",\"id\":\"98\",\"name\":\"曲周县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":99,\"values\":{\"cityId\":\"6\",\"codes\":\"[\\\"武安市\\\"]\",\"dataId\":\"\",\"id\":\"99\",\"name\":\"武安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":100,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"邢台县\\\"]\",\"dataId\":\"\",\"id\":\"100\",\"name\":\"邢台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":101,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"临城县\\\"]\",\"dataId\":\"\",\"id\":\"101\",\"name\":\"临城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":102,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"内丘县\\\"]\",\"dataId\":\"\",\"id\":\"102\",\"name\":\"内丘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":103,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"柏乡县\\\"]\",\"dataId\":\"\",\"id\":\"103\",\"name\":\"柏乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":104,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"隆尧县\\\"]\",\"dataId\":\"\",\"id\":\"104\",\"name\":\"隆尧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":105,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"任县\\\"]\",\"dataId\":\"\",\"id\":\"105\",\"name\":\"任县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":106,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"南和县\\\"]\",\"dataId\":\"\",\"id\":\"106\",\"name\":\"南和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":107,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"宁晋县\\\"]\",\"dataId\":\"\",\"id\":\"107\",\"name\":\"宁晋县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":108,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"巨鹿县\\\"]\",\"dataId\":\"\",\"id\":\"108\",\"name\":\"巨鹿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":109,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"新河县\\\"]\",\"dataId\":\"\",\"id\":\"109\",\"name\":\"新河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":110,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"广宗县\\\"]\",\"dataId\":\"\",\"id\":\"110\",\"name\":\"广宗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":111,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"平乡县\\\"]\",\"dataId\":\"\",\"id\":\"111\",\"name\":\"平乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":112,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"威县\\\"]\",\"dataId\":\"\",\"id\":\"112\",\"name\":\"威县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":113,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"清河县\\\"]\",\"dataId\":\"\",\"id\":\"113\",\"name\":\"清河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":114,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"临西县\\\"]\",\"dataId\":\"\",\"id\":\"114\",\"name\":\"临西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":115,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"南宫市\\\"]\",\"dataId\":\"\",\"id\":\"115\",\"name\":\"南宫市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":116,\"values\":{\"cityId\":\"7\",\"codes\":\"[\\\"沙河市\\\"]\",\"dataId\":\"\",\"id\":\"116\",\"name\":\"沙河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":117,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"新市区\\\"]\",\"dataId\":\"\",\"id\":\"117\",\"name\":\"新市区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":118,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"北市区\\\"]\",\"dataId\":\"\",\"id\":\"118\",\"name\":\"北市区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":119,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"南市区\\\"]\",\"dataId\":\"\",\"id\":\"119\",\"name\":\"南市区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":120,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"满城县\\\"]\",\"dataId\":\"\",\"id\":\"120\",\"name\":\"满城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":121,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"清苑县\\\"]\",\"dataId\":\"\",\"id\":\"121\",\"name\":\"清苑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":122,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"涞水县\\\"]\",\"dataId\":\"\",\"id\":\"122\",\"name\":\"涞水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":123,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"阜平县\\\"]\",\"dataId\":\"\",\"id\":\"123\",\"name\":\"阜平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":124,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"徐水县\\\"]\",\"dataId\":\"\",\"id\":\"124\",\"name\":\"徐水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":125,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"定兴县\\\"]\",\"dataId\":\"\",\"id\":\"125\",\"name\":\"定兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":126,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"唐县\\\"]\",\"dataId\":\"\",\"id\":\"126\",\"name\":\"唐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":127,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"高阳县\\\"]\",\"dataId\":\"\",\"id\":\"127\",\"name\":\"高阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":128,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"容城县\\\"]\",\"dataId\":\"\",\"id\":\"128\",\"name\":\"容城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":129,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"涞源县\\\"]\",\"dataId\":\"\",\"id\":\"129\",\"name\":\"涞源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":130,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"望都县\\\"]\",\"dataId\":\"\",\"id\":\"130\",\"name\":\"望都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":131,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"安新县\\\"]\",\"dataId\":\"\",\"id\":\"131\",\"name\":\"安新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":132,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"易县\\\"]\",\"dataId\":\"\",\"id\":\"132\",\"name\":\"易县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":133,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"曲阳县\\\"]\",\"dataId\":\"\",\"id\":\"133\",\"name\":\"曲阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":134,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"蠡县\\\"]\",\"dataId\":\"\",\"id\":\"134\",\"name\":\"蠡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":135,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"顺平县\\\"]\",\"dataId\":\"\",\"id\":\"135\",\"name\":\"顺平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":136,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"博野县\\\"]\",\"dataId\":\"\",\"id\":\"136\",\"name\":\"博野县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":137,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"雄县\\\"]\",\"dataId\":\"\",\"id\":\"137\",\"name\":\"雄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":138,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"涿州市\\\"]\",\"dataId\":\"\",\"id\":\"138\",\"name\":\"涿州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":139,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"定州市\\\"]\",\"dataId\":\"\",\"id\":\"139\",\"name\":\"定州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":140,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"安国市\\\"]\",\"dataId\":\"\",\"id\":\"140\",\"name\":\"安国市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":141,\"values\":{\"cityId\":\"8\",\"codes\":\"[\\\"高碑店市\\\"]\",\"dataId\":\"\",\"id\":\"141\",\"name\":\"高碑店市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":142,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"宣化区\\\"]\",\"dataId\":\"\",\"id\":\"142\",\"name\":\"宣化区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":143,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"下花园区\\\"]\",\"dataId\":\"\",\"id\":\"143\",\"name\":\"下花园区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":144,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"宣化县\\\"]\",\"dataId\":\"\",\"id\":\"144\",\"name\":\"宣化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":145,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"张北县\\\"]\",\"dataId\":\"\",\"id\":\"145\",\"name\":\"张北县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":146,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"康保县\\\"]\",\"dataId\":\"\",\"id\":\"146\",\"name\":\"康保县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":147,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"沽源县\\\"]\",\"dataId\":\"\",\"id\":\"147\",\"name\":\"沽源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":148,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"尚义县\\\"]\",\"dataId\":\"\",\"id\":\"148\",\"name\":\"尚义县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":149,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"蔚县\\\"]\",\"dataId\":\"\",\"id\":\"149\",\"name\":\"蔚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":150,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"阳原县\\\"]\",\"dataId\":\"\",\"id\":\"150\",\"name\":\"阳原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":151,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"怀安县\\\"]\",\"dataId\":\"\",\"id\":\"151\",\"name\":\"怀安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":152,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"万全县\\\"]\",\"dataId\":\"\",\"id\":\"152\",\"name\":\"万全县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":153,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"怀来县\\\"]\",\"dataId\":\"\",\"id\":\"153\",\"name\":\"怀来县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":154,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"涿鹿县\\\"]\",\"dataId\":\"\",\"id\":\"154\",\"name\":\"涿鹿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":155,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"赤城县\\\"]\",\"dataId\":\"\",\"id\":\"155\",\"name\":\"赤城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":156,\"values\":{\"cityId\":\"9\",\"codes\":\"[\\\"崇礼县\\\"]\",\"dataId\":\"\",\"id\":\"156\",\"name\":\"崇礼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":157,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"双桥区\\\"]\",\"dataId\":\"\",\"id\":\"157\",\"name\":\"双桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":158,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"双滦区\\\"]\",\"dataId\":\"\",\"id\":\"158\",\"name\":\"双滦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":159,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"鹰手营子矿区\\\"]\",\"dataId\":\"\",\"id\":\"159\",\"name\":\"鹰手营子矿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":160,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"承德县\\\"]\",\"dataId\":\"\",\"id\":\"160\",\"name\":\"承德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":161,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"兴隆县\\\"]\",\"dataId\":\"\",\"id\":\"161\",\"name\":\"兴隆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":162,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"平泉县\\\"]\",\"dataId\":\"\",\"id\":\"162\",\"name\":\"平泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":163,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"滦平县\\\"]\",\"dataId\":\"\",\"id\":\"163\",\"name\":\"滦平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":164,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"隆化县\\\"]\",\"dataId\":\"\",\"id\":\"164\",\"name\":\"隆化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":165,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"丰宁满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"165\",\"name\":\"丰宁满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":166,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"宽城满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"166\",\"name\":\"宽城满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":167,\"values\":{\"cityId\":\"10\",\"codes\":\"[\\\"围场满族蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"167\",\"name\":\"围场满族蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":168,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"运河区\\\"]\",\"dataId\":\"\",\"id\":\"168\",\"name\":\"运河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":169,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"沧县\\\"]\",\"dataId\":\"\",\"id\":\"169\",\"name\":\"沧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":170,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"青县\\\"]\",\"dataId\":\"\",\"id\":\"170\",\"name\":\"青县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":171,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"东光县\\\"]\",\"dataId\":\"\",\"id\":\"171\",\"name\":\"东光县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":172,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"海兴县\\\"]\",\"dataId\":\"\",\"id\":\"172\",\"name\":\"海兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":173,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"盐山县\\\"]\",\"dataId\":\"\",\"id\":\"173\",\"name\":\"盐山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":174,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"肃宁县\\\"]\",\"dataId\":\"\",\"id\":\"174\",\"name\":\"肃宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":175,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"南皮县\\\"]\",\"dataId\":\"\",\"id\":\"175\",\"name\":\"南皮县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":176,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"吴桥县\\\"]\",\"dataId\":\"\",\"id\":\"176\",\"name\":\"吴桥县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":177,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"献县\\\"]\",\"dataId\":\"\",\"id\":\"177\",\"name\":\"献县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":178,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"孟村回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"178\",\"name\":\"孟村回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":179,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"泊头市\\\"]\",\"dataId\":\"\",\"id\":\"179\",\"name\":\"泊头市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":180,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"任丘市\\\"]\",\"dataId\":\"\",\"id\":\"180\",\"name\":\"任丘市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":181,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"黄骅市\\\"]\",\"dataId\":\"\",\"id\":\"181\",\"name\":\"黄骅市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":182,\"values\":{\"cityId\":\"11\",\"codes\":\"[\\\"河间市\\\"]\",\"dataId\":\"\",\"id\":\"182\",\"name\":\"河间市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":183,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"安次区\\\"]\",\"dataId\":\"\",\"id\":\"183\",\"name\":\"安次区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":184,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"广阳区\\\"]\",\"dataId\":\"\",\"id\":\"184\",\"name\":\"广阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":185,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"固安县\\\"]\",\"dataId\":\"\",\"id\":\"185\",\"name\":\"固安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":186,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"永清县\\\"]\",\"dataId\":\"\",\"id\":\"186\",\"name\":\"永清县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":187,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"香河县\\\"]\",\"dataId\":\"\",\"id\":\"187\",\"name\":\"香河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":188,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"大城县\\\"]\",\"dataId\":\"\",\"id\":\"188\",\"name\":\"大城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":189,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"文安县\\\"]\",\"dataId\":\"\",\"id\":\"189\",\"name\":\"文安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":190,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"大厂回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"190\",\"name\":\"大厂回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":191,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"霸州市\\\"]\",\"dataId\":\"\",\"id\":\"191\",\"name\":\"霸州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":192,\"values\":{\"cityId\":\"12\",\"codes\":\"[\\\"三河市\\\"]\",\"dataId\":\"\",\"id\":\"192\",\"name\":\"三河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":193,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"桃城区\\\"]\",\"dataId\":\"\",\"id\":\"193\",\"name\":\"桃城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":194,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"枣强县\\\"]\",\"dataId\":\"\",\"id\":\"194\",\"name\":\"枣强县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":195,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"武邑县\\\"]\",\"dataId\":\"\",\"id\":\"195\",\"name\":\"武邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":196,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"武强县\\\"]\",\"dataId\":\"\",\"id\":\"196\",\"name\":\"武强县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":197,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"饶阳县\\\"]\",\"dataId\":\"\",\"id\":\"197\",\"name\":\"饶阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":198,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"安平县\\\"]\",\"dataId\":\"\",\"id\":\"198\",\"name\":\"安平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":199,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"故城县\\\"]\",\"dataId\":\"\",\"id\":\"199\",\"name\":\"故城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":200,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"景县\\\"]\",\"dataId\":\"\",\"id\":\"200\",\"name\":\"景县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":201,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"阜城县\\\"]\",\"dataId\":\"\",\"id\":\"201\",\"name\":\"阜城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":202,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"冀州市\\\"]\",\"dataId\":\"\",\"id\":\"202\",\"name\":\"冀州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":203,\"values\":{\"cityId\":\"13\",\"codes\":\"[\\\"深州市\\\"]\",\"dataId\":\"\",\"id\":\"203\",\"name\":\"深州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":204,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"小店区\\\"]\",\"dataId\":\"\",\"id\":\"204\",\"name\":\"小店区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":205,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"迎泽区\\\"]\",\"dataId\":\"\",\"id\":\"205\",\"name\":\"迎泽区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":206,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"杏花岭区\\\"]\",\"dataId\":\"\",\"id\":\"206\",\"name\":\"杏花岭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":207,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"尖草坪区\\\"]\",\"dataId\":\"\",\"id\":\"207\",\"name\":\"尖草坪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":208,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"万柏林区\\\"]\",\"dataId\":\"\",\"id\":\"208\",\"name\":\"万柏林区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":209,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"晋源区\\\"]\",\"dataId\":\"\",\"id\":\"209\",\"name\":\"晋源区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":210,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"清徐县\\\"]\",\"dataId\":\"\",\"id\":\"210\",\"name\":\"清徐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":211,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"阳曲县\\\"]\",\"dataId\":\"\",\"id\":\"211\",\"name\":\"阳曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":212,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"娄烦县\\\"]\",\"dataId\":\"\",\"id\":\"212\",\"name\":\"娄烦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":213,\"values\":{\"cityId\":\"14\",\"codes\":\"[\\\"古交市\\\"]\",\"dataId\":\"\",\"id\":\"213\",\"name\":\"古交市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":214,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"城区\\\"]\",\"dataId\":\"\",\"id\":\"214\",\"name\":\"城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":215,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"矿区\\\"]\",\"dataId\":\"\",\"id\":\"215\",\"name\":\"矿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":216,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"南郊区\\\"]\",\"dataId\":\"\",\"id\":\"216\",\"name\":\"南郊区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":217,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"新荣区\\\"]\",\"dataId\":\"\",\"id\":\"217\",\"name\":\"新荣区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":218,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"阳高县\\\"]\",\"dataId\":\"\",\"id\":\"218\",\"name\":\"阳高县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":219,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"天镇县\\\"]\",\"dataId\":\"\",\"id\":\"219\",\"name\":\"天镇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":220,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"广灵县\\\"]\",\"dataId\":\"\",\"id\":\"220\",\"name\":\"广灵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":221,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"灵丘县\\\"]\",\"dataId\":\"\",\"id\":\"221\",\"name\":\"灵丘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":222,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"浑源县\\\"]\",\"dataId\":\"\",\"id\":\"222\",\"name\":\"浑源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":223,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"左云县\\\"]\",\"dataId\":\"\",\"id\":\"223\",\"name\":\"左云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":224,\"values\":{\"cityId\":\"15\",\"codes\":\"[\\\"大同县\\\"]\",\"dataId\":\"\",\"id\":\"224\",\"name\":\"大同县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":225,\"values\":{\"cityId\":\"16\",\"codes\":\"[\\\"郊区\\\"]\",\"dataId\":\"\",\"id\":\"225\",\"name\":\"郊区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":226,\"values\":{\"cityId\":\"16\",\"codes\":\"[\\\"平定县\\\"]\",\"dataId\":\"\",\"id\":\"226\",\"name\":\"平定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":227,\"values\":{\"cityId\":\"16\",\"codes\":\"[\\\"盂县\\\"]\",\"dataId\":\"\",\"id\":\"227\",\"name\":\"盂县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":228,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"长治县\\\"]\",\"dataId\":\"\",\"id\":\"228\",\"name\":\"长治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":229,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"襄垣县\\\"]\",\"dataId\":\"\",\"id\":\"229\",\"name\":\"襄垣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":230,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"屯留县\\\"]\",\"dataId\":\"\",\"id\":\"230\",\"name\":\"屯留县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":231,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"平顺县\\\"]\",\"dataId\":\"\",\"id\":\"231\",\"name\":\"平顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":232,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"黎城县\\\"]\",\"dataId\":\"\",\"id\":\"232\",\"name\":\"黎城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":233,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"壶关县\\\"]\",\"dataId\":\"\",\"id\":\"233\",\"name\":\"壶关县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":234,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"长子县\\\"]\",\"dataId\":\"\",\"id\":\"234\",\"name\":\"长子县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":235,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"武乡县\\\"]\",\"dataId\":\"\",\"id\":\"235\",\"name\":\"武乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":236,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"沁县\\\"]\",\"dataId\":\"\",\"id\":\"236\",\"name\":\"沁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":237,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"沁源县\\\"]\",\"dataId\":\"\",\"id\":\"237\",\"name\":\"沁源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":238,\"values\":{\"cityId\":\"17\",\"codes\":\"[\\\"潞城市\\\"]\",\"dataId\":\"\",\"id\":\"238\",\"name\":\"潞城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":239,\"values\":{\"cityId\":\"18\",\"codes\":\"[\\\"沁水县\\\"]\",\"dataId\":\"\",\"id\":\"239\",\"name\":\"沁水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":240,\"values\":{\"cityId\":\"18\",\"codes\":\"[\\\"阳城县\\\"]\",\"dataId\":\"\",\"id\":\"240\",\"name\":\"阳城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":241,\"values\":{\"cityId\":\"18\",\"codes\":\"[\\\"陵川县\\\"]\",\"dataId\":\"\",\"id\":\"241\",\"name\":\"陵川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":242,\"values\":{\"cityId\":\"18\",\"codes\":\"[\\\"泽州县\\\"]\",\"dataId\":\"\",\"id\":\"242\",\"name\":\"泽州县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":243,\"values\":{\"cityId\":\"18\",\"codes\":\"[\\\"高平市\\\"]\",\"dataId\":\"\",\"id\":\"243\",\"name\":\"高平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":244,\"values\":{\"cityId\":\"19\",\"codes\":\"[\\\"朔城区\\\"]\",\"dataId\":\"\",\"id\":\"244\",\"name\":\"朔城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":245,\"values\":{\"cityId\":\"19\",\"codes\":\"[\\\"平鲁区\\\"]\",\"dataId\":\"\",\"id\":\"245\",\"name\":\"平鲁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":246,\"values\":{\"cityId\":\"19\",\"codes\":\"[\\\"山阴县\\\"]\",\"dataId\":\"\",\"id\":\"246\",\"name\":\"山阴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":247,\"values\":{\"cityId\":\"19\",\"codes\":\"[\\\"应县\\\"]\",\"dataId\":\"\",\"id\":\"247\",\"name\":\"应县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":248,\"values\":{\"cityId\":\"19\",\"codes\":\"[\\\"右玉县\\\"]\",\"dataId\":\"\",\"id\":\"248\",\"name\":\"右玉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":249,\"values\":{\"cityId\":\"19\",\"codes\":\"[\\\"怀仁县\\\"]\",\"dataId\":\"\",\"id\":\"249\",\"name\":\"怀仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":250,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"榆次区\\\"]\",\"dataId\":\"\",\"id\":\"250\",\"name\":\"榆次区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":251,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"榆社县\\\"]\",\"dataId\":\"\",\"id\":\"251\",\"name\":\"榆社县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":252,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"左权县\\\"]\",\"dataId\":\"\",\"id\":\"252\",\"name\":\"左权县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":253,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"和顺县\\\"]\",\"dataId\":\"\",\"id\":\"253\",\"name\":\"和顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":254,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"昔阳县\\\"]\",\"dataId\":\"\",\"id\":\"254\",\"name\":\"昔阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":255,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"寿阳县\\\"]\",\"dataId\":\"\",\"id\":\"255\",\"name\":\"寿阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":256,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"太谷县\\\"]\",\"dataId\":\"\",\"id\":\"256\",\"name\":\"太谷县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":257,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"祁县\\\"]\",\"dataId\":\"\",\"id\":\"257\",\"name\":\"祁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":258,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"平遥县\\\"]\",\"dataId\":\"\",\"id\":\"258\",\"name\":\"平遥县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":259,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"灵石县\\\"]\",\"dataId\":\"\",\"id\":\"259\",\"name\":\"灵石县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":260,\"values\":{\"cityId\":\"20\",\"codes\":\"[\\\"介休市\\\"]\",\"dataId\":\"\",\"id\":\"260\",\"name\":\"介休市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":261,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"盐湖区\\\"]\",\"dataId\":\"\",\"id\":\"261\",\"name\":\"盐湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":262,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"临猗县\\\"]\",\"dataId\":\"\",\"id\":\"262\",\"name\":\"临猗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":263,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"万荣县\\\"]\",\"dataId\":\"\",\"id\":\"263\",\"name\":\"万荣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":264,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"闻喜县\\\"]\",\"dataId\":\"\",\"id\":\"264\",\"name\":\"闻喜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":265,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"稷山县\\\"]\",\"dataId\":\"\",\"id\":\"265\",\"name\":\"稷山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":266,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"新绛县\\\"]\",\"dataId\":\"\",\"id\":\"266\",\"name\":\"新绛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":267,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"绛县\\\"]\",\"dataId\":\"\",\"id\":\"267\",\"name\":\"绛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":268,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"垣曲县\\\"]\",\"dataId\":\"\",\"id\":\"268\",\"name\":\"垣曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":269,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"夏县\\\"]\",\"dataId\":\"\",\"id\":\"269\",\"name\":\"夏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":270,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"平陆县\\\"]\",\"dataId\":\"\",\"id\":\"270\",\"name\":\"平陆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":271,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"芮城县\\\"]\",\"dataId\":\"\",\"id\":\"271\",\"name\":\"芮城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":272,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"永济市\\\"]\",\"dataId\":\"\",\"id\":\"272\",\"name\":\"永济市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":273,\"values\":{\"cityId\":\"21\",\"codes\":\"[\\\"河津市\\\"]\",\"dataId\":\"\",\"id\":\"273\",\"name\":\"河津市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":274,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"忻府区\\\"]\",\"dataId\":\"\",\"id\":\"274\",\"name\":\"忻府区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":275,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"定襄县\\\"]\",\"dataId\":\"\",\"id\":\"275\",\"name\":\"定襄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":276,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"五台县\\\"]\",\"dataId\":\"\",\"id\":\"276\",\"name\":\"五台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":277,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"代县\\\"]\",\"dataId\":\"\",\"id\":\"277\",\"name\":\"代县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":278,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"繁峙县\\\"]\",\"dataId\":\"\",\"id\":\"278\",\"name\":\"繁峙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":279,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"宁武县\\\"]\",\"dataId\":\"\",\"id\":\"279\",\"name\":\"宁武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":280,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"静乐县\\\"]\",\"dataId\":\"\",\"id\":\"280\",\"name\":\"静乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":281,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"神池县\\\"]\",\"dataId\":\"\",\"id\":\"281\",\"name\":\"神池县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":282,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"五寨县\\\"]\",\"dataId\":\"\",\"id\":\"282\",\"name\":\"五寨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":283,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"岢岚县\\\"]\",\"dataId\":\"\",\"id\":\"283\",\"name\":\"岢岚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":284,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"河曲县\\\"]\",\"dataId\":\"\",\"id\":\"284\",\"name\":\"河曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":285,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"保德县\\\"]\",\"dataId\":\"\",\"id\":\"285\",\"name\":\"保德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":286,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"偏关县\\\"]\",\"dataId\":\"\",\"id\":\"286\",\"name\":\"偏关县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":287,\"values\":{\"cityId\":\"22\",\"codes\":\"[\\\"原平市\\\"]\",\"dataId\":\"\",\"id\":\"287\",\"name\":\"原平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":288,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"尧都区\\\"]\",\"dataId\":\"\",\"id\":\"288\",\"name\":\"尧都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":289,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"曲沃县\\\"]\",\"dataId\":\"\",\"id\":\"289\",\"name\":\"曲沃县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":290,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"翼城县\\\"]\",\"dataId\":\"\",\"id\":\"290\",\"name\":\"翼城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":291,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"襄汾县\\\"]\",\"dataId\":\"\",\"id\":\"291\",\"name\":\"襄汾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":292,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"洪洞县\\\"]\",\"dataId\":\"\",\"id\":\"292\",\"name\":\"洪洞县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":293,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"古县\\\"]\",\"dataId\":\"\",\"id\":\"293\",\"name\":\"古县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":294,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"安泽县\\\"]\",\"dataId\":\"\",\"id\":\"294\",\"name\":\"安泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":295,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"浮山县\\\"]\",\"dataId\":\"\",\"id\":\"295\",\"name\":\"浮山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":296,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"吉县\\\"]\",\"dataId\":\"\",\"id\":\"296\",\"name\":\"吉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":297,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"乡宁县\\\"]\",\"dataId\":\"\",\"id\":\"297\",\"name\":\"乡宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":298,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"大宁县\\\"]\",\"dataId\":\"\",\"id\":\"298\",\"name\":\"大宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":299,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"隰县\\\"]\",\"dataId\":\"\",\"id\":\"299\",\"name\":\"隰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":300,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"永和县\\\"]\",\"dataId\":\"\",\"id\":\"300\",\"name\":\"永和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":301,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"蒲县\\\"]\",\"dataId\":\"\",\"id\":\"301\",\"name\":\"蒲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":302,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"汾西县\\\"]\",\"dataId\":\"\",\"id\":\"302\",\"name\":\"汾西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":303,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"侯马市\\\"]\",\"dataId\":\"\",\"id\":\"303\",\"name\":\"侯马市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":304,\"values\":{\"cityId\":\"23\",\"codes\":\"[\\\"霍州市\\\"]\",\"dataId\":\"\",\"id\":\"304\",\"name\":\"霍州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":305,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"离石区\\\"]\",\"dataId\":\"\",\"id\":\"305\",\"name\":\"离石区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":306,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"文水县\\\"]\",\"dataId\":\"\",\"id\":\"306\",\"name\":\"文水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":307,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"交城县\\\"]\",\"dataId\":\"\",\"id\":\"307\",\"name\":\"交城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":308,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"兴县\\\"]\",\"dataId\":\"\",\"id\":\"308\",\"name\":\"兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":309,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"临县\\\"]\",\"dataId\":\"\",\"id\":\"309\",\"name\":\"临县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":310,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"柳林县\\\"]\",\"dataId\":\"\",\"id\":\"310\",\"name\":\"柳林县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":311,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"石楼县\\\"]\",\"dataId\":\"\",\"id\":\"311\",\"name\":\"石楼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":312,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"岚县\\\"]\",\"dataId\":\"\",\"id\":\"312\",\"name\":\"岚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":313,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"方山县\\\"]\",\"dataId\":\"\",\"id\":\"313\",\"name\":\"方山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":314,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"中阳县\\\"]\",\"dataId\":\"\",\"id\":\"314\",\"name\":\"中阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":315,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"交口县\\\"]\",\"dataId\":\"\",\"id\":\"315\",\"name\":\"交口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":316,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"孝义市\\\"]\",\"dataId\":\"\",\"id\":\"316\",\"name\":\"孝义市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":317,\"values\":{\"cityId\":\"24\",\"codes\":\"[\\\"汾阳市\\\"]\",\"dataId\":\"\",\"id\":\"317\",\"name\":\"汾阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":318,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"新城区\\\"]\",\"dataId\":\"\",\"id\":\"318\",\"name\":\"新城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":319,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"回民区\\\"]\",\"dataId\":\"\",\"id\":\"319\",\"name\":\"回民区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":320,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"玉泉区\\\"]\",\"dataId\":\"\",\"id\":\"320\",\"name\":\"玉泉区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":321,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"赛罕区\\\"]\",\"dataId\":\"\",\"id\":\"321\",\"name\":\"赛罕区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":322,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"土默特左旗\\\"]\",\"dataId\":\"\",\"id\":\"322\",\"name\":\"土默特左旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":323,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"托克托县\\\"]\",\"dataId\":\"\",\"id\":\"323\",\"name\":\"托克托县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":324,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"和林格尔县\\\"]\",\"dataId\":\"\",\"id\":\"324\",\"name\":\"和林格尔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":325,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"清水河县\\\"]\",\"dataId\":\"\",\"id\":\"325\",\"name\":\"清水河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":326,\"values\":{\"cityId\":\"25\",\"codes\":\"[\\\"武川县\\\"]\",\"dataId\":\"\",\"id\":\"326\",\"name\":\"武川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":327,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"东河区\\\"]\",\"dataId\":\"\",\"id\":\"327\",\"name\":\"东河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":328,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"昆都仑区\\\"]\",\"dataId\":\"\",\"id\":\"328\",\"name\":\"昆都仑区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":329,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"青山区\\\"]\",\"dataId\":\"\",\"id\":\"329\",\"name\":\"青山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":330,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"石拐区\\\"]\",\"dataId\":\"\",\"id\":\"330\",\"name\":\"石拐区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":331,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"白云矿区\\\"]\",\"dataId\":\"\",\"id\":\"331\",\"name\":\"白云矿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":332,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"九原区\\\"]\",\"dataId\":\"\",\"id\":\"332\",\"name\":\"九原区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":333,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"土默特右旗\\\"]\",\"dataId\":\"\",\"id\":\"333\",\"name\":\"土默特右旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":334,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"固阳县\\\"]\",\"dataId\":\"\",\"id\":\"334\",\"name\":\"固阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":335,\"values\":{\"cityId\":\"26\",\"codes\":\"[\\\"达尔罕茂明安联合旗\\\"]\",\"dataId\":\"\",\"id\":\"335\",\"name\":\"达尔罕茂明安联合旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":336,\"values\":{\"cityId\":\"27\",\"codes\":\"[\\\"海勃湾区\\\"]\",\"dataId\":\"\",\"id\":\"336\",\"name\":\"海勃湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":337,\"values\":{\"cityId\":\"27\",\"codes\":\"[\\\"海南区\\\"]\",\"dataId\":\"\",\"id\":\"337\",\"name\":\"海南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":338,\"values\":{\"cityId\":\"27\",\"codes\":\"[\\\"乌达区\\\"]\",\"dataId\":\"\",\"id\":\"338\",\"name\":\"乌达区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":339,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"红山区\\\"]\",\"dataId\":\"\",\"id\":\"339\",\"name\":\"红山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":340,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"元宝山区\\\"]\",\"dataId\":\"\",\"id\":\"340\",\"name\":\"元宝山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":341,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"松山区\\\"]\",\"dataId\":\"\",\"id\":\"341\",\"name\":\"松山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":342,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"阿鲁科尔沁旗\\\"]\",\"dataId\":\"\",\"id\":\"342\",\"name\":\"阿鲁科尔沁旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":343,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"巴林左旗\\\"]\",\"dataId\":\"\",\"id\":\"343\",\"name\":\"巴林左旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":344,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"巴林右旗\\\"]\",\"dataId\":\"\",\"id\":\"344\",\"name\":\"巴林右旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":345,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"林西县\\\"]\",\"dataId\":\"\",\"id\":\"345\",\"name\":\"林西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":346,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"克什克腾旗\\\"]\",\"dataId\":\"\",\"id\":\"346\",\"name\":\"克什克腾旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":347,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"翁牛特旗\\\"]\",\"dataId\":\"\",\"id\":\"347\",\"name\":\"翁牛特旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":348,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"喀喇沁旗\\\"]\",\"dataId\":\"\",\"id\":\"348\",\"name\":\"喀喇沁旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":349,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"宁城县\\\"]\",\"dataId\":\"\",\"id\":\"349\",\"name\":\"宁城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":350,\"values\":{\"cityId\":\"28\",\"codes\":\"[\\\"敖汉旗\\\"]\",\"dataId\":\"\",\"id\":\"350\",\"name\":\"敖汉旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":351,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"科尔沁区\\\"]\",\"dataId\":\"\",\"id\":\"351\",\"name\":\"科尔沁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":352,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"科尔沁左翼中旗\\\"]\",\"dataId\":\"\",\"id\":\"352\",\"name\":\"科尔沁左翼中旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":353,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"科尔沁左翼后旗\\\"]\",\"dataId\":\"\",\"id\":\"353\",\"name\":\"科尔沁左翼后旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":354,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"开鲁县\\\"]\",\"dataId\":\"\",\"id\":\"354\",\"name\":\"开鲁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":355,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"库伦旗\\\"]\",\"dataId\":\"\",\"id\":\"355\",\"name\":\"库伦旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":356,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"奈曼旗\\\"]\",\"dataId\":\"\",\"id\":\"356\",\"name\":\"奈曼旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":357,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"扎鲁特旗\\\"]\",\"dataId\":\"\",\"id\":\"357\",\"name\":\"扎鲁特旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":358,\"values\":{\"cityId\":\"29\",\"codes\":\"[\\\"霍林郭勒市\\\"]\",\"dataId\":\"\",\"id\":\"358\",\"name\":\"霍林郭勒市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":359,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"东胜区\\\"]\",\"dataId\":\"\",\"id\":\"359\",\"name\":\"东胜区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":360,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"达拉特旗\\\"]\",\"dataId\":\"\",\"id\":\"360\",\"name\":\"达拉特旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":361,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"准格尔旗\\\"]\",\"dataId\":\"\",\"id\":\"361\",\"name\":\"准格尔旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":362,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"鄂托克前旗\\\"]\",\"dataId\":\"\",\"id\":\"362\",\"name\":\"鄂托克前旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":363,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"鄂托克旗\\\"]\",\"dataId\":\"\",\"id\":\"363\",\"name\":\"鄂托克旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":364,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"杭锦旗\\\"]\",\"dataId\":\"\",\"id\":\"364\",\"name\":\"杭锦旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":365,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"乌审旗\\\"]\",\"dataId\":\"\",\"id\":\"365\",\"name\":\"乌审旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":366,\"values\":{\"cityId\":\"30\",\"codes\":\"[\\\"伊金霍洛旗\\\"]\",\"dataId\":\"\",\"id\":\"366\",\"name\":\"伊金霍洛旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":367,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"海拉尔区\\\"]\",\"dataId\":\"\",\"id\":\"367\",\"name\":\"海拉尔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":368,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"阿荣旗\\\"]\",\"dataId\":\"\",\"id\":\"368\",\"name\":\"阿荣旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":369,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"莫力达瓦达斡尔族自治旗\\\"]\",\"dataId\":\"\",\"id\":\"369\",\"name\":\"莫力达瓦达斡尔族自治旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":370,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"鄂伦春自治旗\\\"]\",\"dataId\":\"\",\"id\":\"370\",\"name\":\"鄂伦春自治旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":371,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"鄂温克族自治旗\\\"]\",\"dataId\":\"\",\"id\":\"371\",\"name\":\"鄂温克族自治旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":372,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"陈巴尔虎旗\\\"]\",\"dataId\":\"\",\"id\":\"372\",\"name\":\"陈巴尔虎旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":373,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"新巴尔虎左旗\\\"]\",\"dataId\":\"\",\"id\":\"373\",\"name\":\"新巴尔虎左旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":374,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"新巴尔虎右旗\\\"]\",\"dataId\":\"\",\"id\":\"374\",\"name\":\"新巴尔虎右旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":375,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"满洲里市\\\"]\",\"dataId\":\"\",\"id\":\"375\",\"name\":\"满洲里市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":376,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"牙克石市\\\"]\",\"dataId\":\"\",\"id\":\"376\",\"name\":\"牙克石市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":377,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"扎兰屯市\\\"]\",\"dataId\":\"\",\"id\":\"377\",\"name\":\"扎兰屯市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":378,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"额尔古纳市\\\"]\",\"dataId\":\"\",\"id\":\"378\",\"name\":\"额尔古纳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":379,\"values\":{\"cityId\":\"31\",\"codes\":\"[\\\"根河市\\\"]\",\"dataId\":\"\",\"id\":\"379\",\"name\":\"根河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":380,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"临河区\\\"]\",\"dataId\":\"\",\"id\":\"380\",\"name\":\"临河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":381,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"五原县\\\"]\",\"dataId\":\"\",\"id\":\"381\",\"name\":\"五原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":382,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"磴口县\\\"]\",\"dataId\":\"\",\"id\":\"382\",\"name\":\"磴口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":383,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"乌拉特前旗\\\"]\",\"dataId\":\"\",\"id\":\"383\",\"name\":\"乌拉特前旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":384,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"乌拉特中旗\\\"]\",\"dataId\":\"\",\"id\":\"384\",\"name\":\"乌拉特中旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":385,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"乌拉特后旗\\\"]\",\"dataId\":\"\",\"id\":\"385\",\"name\":\"乌拉特后旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":386,\"values\":{\"cityId\":\"32\",\"codes\":\"[\\\"杭锦后旗\\\"]\",\"dataId\":\"\",\"id\":\"386\",\"name\":\"杭锦后旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":387,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"集宁区\\\"]\",\"dataId\":\"\",\"id\":\"387\",\"name\":\"集宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":388,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"卓资县\\\"]\",\"dataId\":\"\",\"id\":\"388\",\"name\":\"卓资县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":389,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"化德县\\\"]\",\"dataId\":\"\",\"id\":\"389\",\"name\":\"化德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":390,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"商都县\\\"]\",\"dataId\":\"\",\"id\":\"390\",\"name\":\"商都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":391,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"兴和县\\\"]\",\"dataId\":\"\",\"id\":\"391\",\"name\":\"兴和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":392,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"凉城县\\\"]\",\"dataId\":\"\",\"id\":\"392\",\"name\":\"凉城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":393,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"察哈尔右翼前旗\\\"]\",\"dataId\":\"\",\"id\":\"393\",\"name\":\"察哈尔右翼前旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":394,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"察哈尔右翼中旗\\\"]\",\"dataId\":\"\",\"id\":\"394\",\"name\":\"察哈尔右翼中旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":395,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"察哈尔右翼后旗\\\"]\",\"dataId\":\"\",\"id\":\"395\",\"name\":\"察哈尔右翼后旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":396,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"四子王旗\\\"]\",\"dataId\":\"\",\"id\":\"396\",\"name\":\"四子王旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":397,\"values\":{\"cityId\":\"33\",\"codes\":\"[\\\"丰镇市\\\"]\",\"dataId\":\"\",\"id\":\"397\",\"name\":\"丰镇市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":398,\"values\":{\"cityId\":\"34\",\"codes\":\"[\\\"乌兰浩特市\\\"]\",\"dataId\":\"\",\"id\":\"398\",\"name\":\"乌兰浩特市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":399,\"values\":{\"cityId\":\"34\",\"codes\":\"[\\\"阿尔山市\\\"]\",\"dataId\":\"\",\"id\":\"399\",\"name\":\"阿尔山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":400,\"values\":{\"cityId\":\"34\",\"codes\":\"[\\\"科尔沁右翼前旗\\\"]\",\"dataId\":\"\",\"id\":\"400\",\"name\":\"科尔沁右翼前旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":401,\"values\":{\"cityId\":\"34\",\"codes\":\"[\\\"科尔沁右翼中旗\\\"]\",\"dataId\":\"\",\"id\":\"401\",\"name\":\"科尔沁右翼中旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":402,\"values\":{\"cityId\":\"34\",\"codes\":\"[\\\"扎赉特旗\\\"]\",\"dataId\":\"\",\"id\":\"402\",\"name\":\"扎赉特旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":403,\"values\":{\"cityId\":\"34\",\"codes\":\"[\\\"突泉县\\\"]\",\"dataId\":\"\",\"id\":\"403\",\"name\":\"突泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":404,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"二连浩特市\\\"]\",\"dataId\":\"\",\"id\":\"404\",\"name\":\"二连浩特市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":405,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"锡林浩特市\\\"]\",\"dataId\":\"\",\"id\":\"405\",\"name\":\"锡林浩特市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":406,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"阿巴嘎旗\\\"]\",\"dataId\":\"\",\"id\":\"406\",\"name\":\"阿巴嘎旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":407,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"苏尼特左旗\\\"]\",\"dataId\":\"\",\"id\":\"407\",\"name\":\"苏尼特左旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":408,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"苏尼特右旗\\\"]\",\"dataId\":\"\",\"id\":\"408\",\"name\":\"苏尼特右旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":409,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"东乌珠穆沁旗\\\"]\",\"dataId\":\"\",\"id\":\"409\",\"name\":\"东乌珠穆沁旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":410,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"西乌珠穆沁旗\\\"]\",\"dataId\":\"\",\"id\":\"410\",\"name\":\"西乌珠穆沁旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":411,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"太仆寺旗\\\"]\",\"dataId\":\"\",\"id\":\"411\",\"name\":\"太仆寺旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":412,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"镶黄旗\\\"]\",\"dataId\":\"\",\"id\":\"412\",\"name\":\"镶黄旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":413,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"正镶白旗\\\"]\",\"dataId\":\"\",\"id\":\"413\",\"name\":\"正镶白旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":414,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"正蓝旗\\\"]\",\"dataId\":\"\",\"id\":\"414\",\"name\":\"正蓝旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":415,\"values\":{\"cityId\":\"35\",\"codes\":\"[\\\"多伦县\\\"]\",\"dataId\":\"\",\"id\":\"415\",\"name\":\"多伦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":416,\"values\":{\"cityId\":\"36\",\"codes\":\"[\\\"阿拉善左旗\\\"]\",\"dataId\":\"\",\"id\":\"416\",\"name\":\"阿拉善左旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":417,\"values\":{\"cityId\":\"36\",\"codes\":\"[\\\"阿拉善右旗\\\"]\",\"dataId\":\"\",\"id\":\"417\",\"name\":\"阿拉善右旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":418,\"values\":{\"cityId\":\"36\",\"codes\":\"[\\\"额济纳旗\\\"]\",\"dataId\":\"\",\"id\":\"418\",\"name\":\"额济纳旗\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":419,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"沈河区\\\"]\",\"dataId\":\"\",\"id\":\"419\",\"name\":\"沈河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":420,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"大东区\\\"]\",\"dataId\":\"\",\"id\":\"420\",\"name\":\"大东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":421,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"皇姑区\\\"]\",\"dataId\":\"\",\"id\":\"421\",\"name\":\"皇姑区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":422,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"铁西区\\\"]\",\"dataId\":\"\",\"id\":\"422\",\"name\":\"铁西区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":423,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"苏家屯区\\\"]\",\"dataId\":\"\",\"id\":\"423\",\"name\":\"苏家屯区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":424,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"东陵区\\\"]\",\"dataId\":\"\",\"id\":\"424\",\"name\":\"东陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":425,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"新城子区\\\"]\",\"dataId\":\"\",\"id\":\"425\",\"name\":\"新城子区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":426,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"于洪区\\\"]\",\"dataId\":\"\",\"id\":\"426\",\"name\":\"于洪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":427,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"辽中县\\\"]\",\"dataId\":\"\",\"id\":\"427\",\"name\":\"辽中县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":428,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"康平县\\\"]\",\"dataId\":\"\",\"id\":\"428\",\"name\":\"康平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":429,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"法库县\\\"]\",\"dataId\":\"\",\"id\":\"429\",\"name\":\"法库县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":430,\"values\":{\"cityId\":\"37\",\"codes\":\"[\\\"新民市\\\"]\",\"dataId\":\"\",\"id\":\"430\",\"name\":\"新民市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":431,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"中山区\\\"]\",\"dataId\":\"\",\"id\":\"431\",\"name\":\"中山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":432,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"西岗区\\\"]\",\"dataId\":\"\",\"id\":\"432\",\"name\":\"西岗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":433,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"沙河口区\\\"]\",\"dataId\":\"\",\"id\":\"433\",\"name\":\"沙河口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":434,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"甘井子区\\\"]\",\"dataId\":\"\",\"id\":\"434\",\"name\":\"甘井子区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":435,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"旅顺口区\\\"]\",\"dataId\":\"\",\"id\":\"435\",\"name\":\"旅顺口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":436,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"金州区\\\"]\",\"dataId\":\"\",\"id\":\"436\",\"name\":\"金州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":437,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"长海县\\\"]\",\"dataId\":\"\",\"id\":\"437\",\"name\":\"长海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":438,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"瓦房店市\\\"]\",\"dataId\":\"\",\"id\":\"438\",\"name\":\"瓦房店市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":439,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"普兰店市\\\"]\",\"dataId\":\"\",\"id\":\"439\",\"name\":\"普兰店市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":440,\"values\":{\"cityId\":\"38\",\"codes\":\"[\\\"庄河市\\\"]\",\"dataId\":\"\",\"id\":\"440\",\"name\":\"庄河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":441,\"values\":{\"cityId\":\"39\",\"codes\":\"[\\\"铁东区\\\"]\",\"dataId\":\"\",\"id\":\"441\",\"name\":\"铁东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":442,\"values\":{\"cityId\":\"39\",\"codes\":\"[\\\"立山区\\\"]\",\"dataId\":\"\",\"id\":\"442\",\"name\":\"立山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":443,\"values\":{\"cityId\":\"39\",\"codes\":\"[\\\"千山区\\\"]\",\"dataId\":\"\",\"id\":\"443\",\"name\":\"千山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":444,\"values\":{\"cityId\":\"39\",\"codes\":\"[\\\"台安县\\\"]\",\"dataId\":\"\",\"id\":\"444\",\"name\":\"台安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":445,\"values\":{\"cityId\":\"39\",\"codes\":\"[\\\"岫岩满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"445\",\"name\":\"岫岩满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":446,\"values\":{\"cityId\":\"39\",\"codes\":\"[\\\"海城市\\\"]\",\"dataId\":\"\",\"id\":\"446\",\"name\":\"海城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":447,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"新抚区\\\"]\",\"dataId\":\"\",\"id\":\"447\",\"name\":\"新抚区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":448,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"东洲区\\\"]\",\"dataId\":\"\",\"id\":\"448\",\"name\":\"东洲区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":449,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"望花区\\\"]\",\"dataId\":\"\",\"id\":\"449\",\"name\":\"望花区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":450,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"顺城区\\\"]\",\"dataId\":\"\",\"id\":\"450\",\"name\":\"顺城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":451,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"抚顺县\\\"]\",\"dataId\":\"\",\"id\":\"451\",\"name\":\"抚顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":452,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"新宾满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"452\",\"name\":\"新宾满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":453,\"values\":{\"cityId\":\"40\",\"codes\":\"[\\\"清原满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"453\",\"name\":\"清原满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":454,\"values\":{\"cityId\":\"41\",\"codes\":\"[\\\"平山区\\\"]\",\"dataId\":\"\",\"id\":\"454\",\"name\":\"平山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":455,\"values\":{\"cityId\":\"41\",\"codes\":\"[\\\"溪湖区\\\"]\",\"dataId\":\"\",\"id\":\"455\",\"name\":\"溪湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":456,\"values\":{\"cityId\":\"41\",\"codes\":\"[\\\"明山区\\\"]\",\"dataId\":\"\",\"id\":\"456\",\"name\":\"明山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":457,\"values\":{\"cityId\":\"41\",\"codes\":\"[\\\"南芬区\\\"]\",\"dataId\":\"\",\"id\":\"457\",\"name\":\"南芬区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":458,\"values\":{\"cityId\":\"41\",\"codes\":\"[\\\"本溪满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"458\",\"name\":\"本溪满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":459,\"values\":{\"cityId\":\"41\",\"codes\":\"[\\\"桓仁满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"459\",\"name\":\"桓仁满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":460,\"values\":{\"cityId\":\"42\",\"codes\":\"[\\\"元宝区\\\"]\",\"dataId\":\"\",\"id\":\"460\",\"name\":\"元宝区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":461,\"values\":{\"cityId\":\"42\",\"codes\":\"[\\\"振兴区\\\"]\",\"dataId\":\"\",\"id\":\"461\",\"name\":\"振兴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":462,\"values\":{\"cityId\":\"42\",\"codes\":\"[\\\"振安区\\\"]\",\"dataId\":\"\",\"id\":\"462\",\"name\":\"振安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":463,\"values\":{\"cityId\":\"42\",\"codes\":\"[\\\"宽甸满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"463\",\"name\":\"宽甸满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":464,\"values\":{\"cityId\":\"42\",\"codes\":\"[\\\"东港市\\\"]\",\"dataId\":\"\",\"id\":\"464\",\"name\":\"东港市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":465,\"values\":{\"cityId\":\"42\",\"codes\":\"[\\\"凤城市\\\"]\",\"dataId\":\"\",\"id\":\"465\",\"name\":\"凤城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":466,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"古塔区\\\"]\",\"dataId\":\"\",\"id\":\"466\",\"name\":\"古塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":467,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"凌河区\\\"]\",\"dataId\":\"\",\"id\":\"467\",\"name\":\"凌河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":468,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"太和区\\\"]\",\"dataId\":\"\",\"id\":\"468\",\"name\":\"太和区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":469,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"黑山县\\\"]\",\"dataId\":\"\",\"id\":\"469\",\"name\":\"黑山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":470,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"义县\\\"]\",\"dataId\":\"\",\"id\":\"470\",\"name\":\"义县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":471,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"凌海市\\\"]\",\"dataId\":\"\",\"id\":\"471\",\"name\":\"凌海市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":472,\"values\":{\"cityId\":\"43\",\"codes\":\"[\\\"北宁市\\\"]\",\"dataId\":\"\",\"id\":\"472\",\"name\":\"北宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":473,\"values\":{\"cityId\":\"44\",\"codes\":\"[\\\"站前区\\\"]\",\"dataId\":\"\",\"id\":\"473\",\"name\":\"站前区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":474,\"values\":{\"cityId\":\"44\",\"codes\":\"[\\\"西市区\\\"]\",\"dataId\":\"\",\"id\":\"474\",\"name\":\"西市区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":475,\"values\":{\"cityId\":\"44\",\"codes\":\"[\\\"鲅鱼圈区\\\"]\",\"dataId\":\"\",\"id\":\"475\",\"name\":\"鲅鱼圈区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":476,\"values\":{\"cityId\":\"44\",\"codes\":\"[\\\"老边区\\\"]\",\"dataId\":\"\",\"id\":\"476\",\"name\":\"老边区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":477,\"values\":{\"cityId\":\"44\",\"codes\":\"[\\\"盖州市\\\"]\",\"dataId\":\"\",\"id\":\"477\",\"name\":\"盖州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":478,\"values\":{\"cityId\":\"44\",\"codes\":\"[\\\"大石桥市\\\"]\",\"dataId\":\"\",\"id\":\"478\",\"name\":\"大石桥市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":479,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"海州区\\\"]\",\"dataId\":\"\",\"id\":\"479\",\"name\":\"海州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":480,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"新邱区\\\"]\",\"dataId\":\"\",\"id\":\"480\",\"name\":\"新邱区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":481,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"太平区\\\"]\",\"dataId\":\"\",\"id\":\"481\",\"name\":\"太平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":482,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"清河门区\\\"]\",\"dataId\":\"\",\"id\":\"482\",\"name\":\"清河门区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":483,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"细河区\\\"]\",\"dataId\":\"\",\"id\":\"483\",\"name\":\"细河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":484,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"阜新蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"484\",\"name\":\"阜新蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":485,\"values\":{\"cityId\":\"45\",\"codes\":\"[\\\"彰武县\\\"]\",\"dataId\":\"\",\"id\":\"485\",\"name\":\"彰武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":486,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"白塔区\\\"]\",\"dataId\":\"\",\"id\":\"486\",\"name\":\"白塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":487,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"文圣区\\\"]\",\"dataId\":\"\",\"id\":\"487\",\"name\":\"文圣区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":488,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"宏伟区\\\"]\",\"dataId\":\"\",\"id\":\"488\",\"name\":\"宏伟区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":489,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"弓长岭区\\\"]\",\"dataId\":\"\",\"id\":\"489\",\"name\":\"弓长岭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":490,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"太子河区\\\"]\",\"dataId\":\"\",\"id\":\"490\",\"name\":\"太子河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":491,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"辽阳县\\\"]\",\"dataId\":\"\",\"id\":\"491\",\"name\":\"辽阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":492,\"values\":{\"cityId\":\"46\",\"codes\":\"[\\\"灯塔市\\\"]\",\"dataId\":\"\",\"id\":\"492\",\"name\":\"灯塔市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":493,\"values\":{\"cityId\":\"47\",\"codes\":\"[\\\"双台子区\\\"]\",\"dataId\":\"\",\"id\":\"493\",\"name\":\"双台子区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":494,\"values\":{\"cityId\":\"47\",\"codes\":\"[\\\"兴隆台区\\\"]\",\"dataId\":\"\",\"id\":\"494\",\"name\":\"兴隆台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":495,\"values\":{\"cityId\":\"47\",\"codes\":\"[\\\"大洼县\\\"]\",\"dataId\":\"\",\"id\":\"495\",\"name\":\"大洼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":496,\"values\":{\"cityId\":\"47\",\"codes\":\"[\\\"盘山县\\\"]\",\"dataId\":\"\",\"id\":\"496\",\"name\":\"盘山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":497,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"银州区\\\"]\",\"dataId\":\"\",\"id\":\"497\",\"name\":\"银州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":498,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"清河区\\\"]\",\"dataId\":\"\",\"id\":\"498\",\"name\":\"清河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":499,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"铁岭县\\\"]\",\"dataId\":\"\",\"id\":\"499\",\"name\":\"铁岭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":500,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"西丰县\\\"]\",\"dataId\":\"\",\"id\":\"500\",\"name\":\"西丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":501,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"昌图县\\\"]\",\"dataId\":\"\",\"id\":\"501\",\"name\":\"昌图县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":502,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"调兵山市\\\"]\",\"dataId\":\"\",\"id\":\"502\",\"name\":\"调兵山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":503,\"values\":{\"cityId\":\"48\",\"codes\":\"[\\\"开原市\\\"]\",\"dataId\":\"\",\"id\":\"503\",\"name\":\"开原市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":504,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"双塔区\\\"]\",\"dataId\":\"\",\"id\":\"504\",\"name\":\"双塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":505,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"龙城区\\\"]\",\"dataId\":\"\",\"id\":\"505\",\"name\":\"龙城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":506,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"朝阳县\\\"]\",\"dataId\":\"\",\"id\":\"506\",\"name\":\"朝阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":507,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"建平县\\\"]\",\"dataId\":\"\",\"id\":\"507\",\"name\":\"建平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":508,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"喀喇沁左翼蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"508\",\"name\":\"喀喇沁左翼蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":509,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"北票市\\\"]\",\"dataId\":\"\",\"id\":\"509\",\"name\":\"北票市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":510,\"values\":{\"cityId\":\"49\",\"codes\":\"[\\\"凌源市\\\"]\",\"dataId\":\"\",\"id\":\"510\",\"name\":\"凌源市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":511,\"values\":{\"cityId\":\"50\",\"codes\":\"[\\\"连山区\\\"]\",\"dataId\":\"\",\"id\":\"511\",\"name\":\"连山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":512,\"values\":{\"cityId\":\"50\",\"codes\":\"[\\\"龙港区\\\"]\",\"dataId\":\"\",\"id\":\"512\",\"name\":\"龙港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":513,\"values\":{\"cityId\":\"50\",\"codes\":\"[\\\"南票区\\\"]\",\"dataId\":\"\",\"id\":\"513\",\"name\":\"南票区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":514,\"values\":{\"cityId\":\"50\",\"codes\":\"[\\\"绥中县\\\"]\",\"dataId\":\"\",\"id\":\"514\",\"name\":\"绥中县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":515,\"values\":{\"cityId\":\"50\",\"codes\":\"[\\\"建昌县\\\"]\",\"dataId\":\"\",\"id\":\"515\",\"name\":\"建昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":516,\"values\":{\"cityId\":\"50\",\"codes\":\"[\\\"兴城市\\\"]\",\"dataId\":\"\",\"id\":\"516\",\"name\":\"兴城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":517,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"南关区\\\"]\",\"dataId\":\"\",\"id\":\"517\",\"name\":\"南关区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":518,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"宽城区\\\"]\",\"dataId\":\"\",\"id\":\"518\",\"name\":\"宽城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":519,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"二道区\\\"]\",\"dataId\":\"\",\"id\":\"519\",\"name\":\"二道区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":520,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"绿园区\\\"]\",\"dataId\":\"\",\"id\":\"520\",\"name\":\"绿园区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":521,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"双阳区\\\"]\",\"dataId\":\"\",\"id\":\"521\",\"name\":\"双阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":522,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"农安县\\\"]\",\"dataId\":\"\",\"id\":\"522\",\"name\":\"农安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":523,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"九台市\\\"]\",\"dataId\":\"\",\"id\":\"523\",\"name\":\"九台市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":524,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"榆树市\\\"]\",\"dataId\":\"\",\"id\":\"524\",\"name\":\"榆树市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":525,\"values\":{\"cityId\":\"51\",\"codes\":\"[\\\"德惠市\\\"]\",\"dataId\":\"\",\"id\":\"525\",\"name\":\"德惠市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":526,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"昌邑区\\\"]\",\"dataId\":\"\",\"id\":\"526\",\"name\":\"昌邑区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":527,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"龙潭区\\\"]\",\"dataId\":\"\",\"id\":\"527\",\"name\":\"龙潭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":528,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"船营区\\\"]\",\"dataId\":\"\",\"id\":\"528\",\"name\":\"船营区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":529,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"丰满区\\\"]\",\"dataId\":\"\",\"id\":\"529\",\"name\":\"丰满区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":530,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"永吉县\\\"]\",\"dataId\":\"\",\"id\":\"530\",\"name\":\"永吉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":531,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"蛟河市\\\"]\",\"dataId\":\"\",\"id\":\"531\",\"name\":\"蛟河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":532,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"桦甸市\\\"]\",\"dataId\":\"\",\"id\":\"532\",\"name\":\"桦甸市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":533,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"舒兰市\\\"]\",\"dataId\":\"\",\"id\":\"533\",\"name\":\"舒兰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":534,\"values\":{\"cityId\":\"52\",\"codes\":\"[\\\"磐石市\\\"]\",\"dataId\":\"\",\"id\":\"534\",\"name\":\"磐石市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":535,\"values\":{\"cityId\":\"53\",\"codes\":\"[\\\"梨树县\\\"]\",\"dataId\":\"\",\"id\":\"535\",\"name\":\"梨树县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":536,\"values\":{\"cityId\":\"53\",\"codes\":\"[\\\"伊通满族自治县\\\"]\",\"dataId\":\"\",\"id\":\"536\",\"name\":\"伊通满族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":537,\"values\":{\"cityId\":\"53\",\"codes\":\"[\\\"公主岭市\\\"]\",\"dataId\":\"\",\"id\":\"537\",\"name\":\"公主岭市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":538,\"values\":{\"cityId\":\"53\",\"codes\":\"[\\\"双辽市\\\"]\",\"dataId\":\"\",\"id\":\"538\",\"name\":\"双辽市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":539,\"values\":{\"cityId\":\"54\",\"codes\":\"[\\\"龙山区\\\"]\",\"dataId\":\"\",\"id\":\"539\",\"name\":\"龙山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":540,\"values\":{\"cityId\":\"54\",\"codes\":\"[\\\"西安区\\\"]\",\"dataId\":\"\",\"id\":\"540\",\"name\":\"西安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":541,\"values\":{\"cityId\":\"54\",\"codes\":\"[\\\"东丰县\\\"]\",\"dataId\":\"\",\"id\":\"541\",\"name\":\"东丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":542,\"values\":{\"cityId\":\"54\",\"codes\":\"[\\\"东辽县\\\"]\",\"dataId\":\"\",\"id\":\"542\",\"name\":\"东辽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":543,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"东昌区\\\"]\",\"dataId\":\"\",\"id\":\"543\",\"name\":\"东昌区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":544,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"二道江区\\\"]\",\"dataId\":\"\",\"id\":\"544\",\"name\":\"二道江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":545,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"通化县\\\"]\",\"dataId\":\"\",\"id\":\"545\",\"name\":\"通化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":546,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"辉南县\\\"]\",\"dataId\":\"\",\"id\":\"546\",\"name\":\"辉南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":547,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"柳河县\\\"]\",\"dataId\":\"\",\"id\":\"547\",\"name\":\"柳河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":548,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"梅河口市\\\"]\",\"dataId\":\"\",\"id\":\"548\",\"name\":\"梅河口市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":549,\"values\":{\"cityId\":\"55\",\"codes\":\"[\\\"集安市\\\"]\",\"dataId\":\"\",\"id\":\"549\",\"name\":\"集安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":550,\"values\":{\"cityId\":\"56\",\"codes\":\"[\\\"八道江区\\\"]\",\"dataId\":\"\",\"id\":\"550\",\"name\":\"八道江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":551,\"values\":{\"cityId\":\"56\",\"codes\":\"[\\\"抚松县\\\"]\",\"dataId\":\"\",\"id\":\"551\",\"name\":\"抚松县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":552,\"values\":{\"cityId\":\"56\",\"codes\":\"[\\\"靖宇县\\\"]\",\"dataId\":\"\",\"id\":\"552\",\"name\":\"靖宇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":553,\"values\":{\"cityId\":\"56\",\"codes\":\"[\\\"长白朝鲜族自治县\\\"]\",\"dataId\":\"\",\"id\":\"553\",\"name\":\"长白朝鲜族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":554,\"values\":{\"cityId\":\"56\",\"codes\":\"[\\\"江源县\\\"]\",\"dataId\":\"\",\"id\":\"554\",\"name\":\"江源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":555,\"values\":{\"cityId\":\"56\",\"codes\":\"[\\\"临江市\\\"]\",\"dataId\":\"\",\"id\":\"555\",\"name\":\"临江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":556,\"values\":{\"cityId\":\"57\",\"codes\":\"[\\\"宁江区\\\"]\",\"dataId\":\"\",\"id\":\"556\",\"name\":\"宁江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":557,\"values\":{\"cityId\":\"57\",\"codes\":\"[\\\"前郭尔罗斯蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"557\",\"name\":\"前郭尔罗斯蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":558,\"values\":{\"cityId\":\"57\",\"codes\":\"[\\\"长岭县\\\"]\",\"dataId\":\"\",\"id\":\"558\",\"name\":\"长岭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":559,\"values\":{\"cityId\":\"57\",\"codes\":\"[\\\"乾安县\\\"]\",\"dataId\":\"\",\"id\":\"559\",\"name\":\"乾安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":560,\"values\":{\"cityId\":\"57\",\"codes\":\"[\\\"扶余县\\\"]\",\"dataId\":\"\",\"id\":\"560\",\"name\":\"扶余县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":561,\"values\":{\"cityId\":\"58\",\"codes\":\"[\\\"洮北区\\\"]\",\"dataId\":\"\",\"id\":\"561\",\"name\":\"洮北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":562,\"values\":{\"cityId\":\"58\",\"codes\":\"[\\\"镇赉县\\\"]\",\"dataId\":\"\",\"id\":\"562\",\"name\":\"镇赉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":563,\"values\":{\"cityId\":\"58\",\"codes\":\"[\\\"通榆县\\\"]\",\"dataId\":\"\",\"id\":\"563\",\"name\":\"通榆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":564,\"values\":{\"cityId\":\"58\",\"codes\":\"[\\\"洮南市\\\"]\",\"dataId\":\"\",\"id\":\"564\",\"name\":\"洮南市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":565,\"values\":{\"cityId\":\"58\",\"codes\":\"[\\\"大安市\\\"]\",\"dataId\":\"\",\"id\":\"565\",\"name\":\"大安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":566,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"延吉市\\\"]\",\"dataId\":\"\",\"id\":\"566\",\"name\":\"延吉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":567,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"图们市\\\"]\",\"dataId\":\"\",\"id\":\"567\",\"name\":\"图们市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":568,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"敦化市\\\"]\",\"dataId\":\"\",\"id\":\"568\",\"name\":\"敦化市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":569,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"珲春市\\\"]\",\"dataId\":\"\",\"id\":\"569\",\"name\":\"珲春市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":570,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"龙井市\\\"]\",\"dataId\":\"\",\"id\":\"570\",\"name\":\"龙井市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":571,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"和龙市\\\"]\",\"dataId\":\"\",\"id\":\"571\",\"name\":\"和龙市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":572,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"汪清县\\\"]\",\"dataId\":\"\",\"id\":\"572\",\"name\":\"汪清县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":573,\"values\":{\"cityId\":\"59\",\"codes\":\"[\\\"安图县\\\"]\",\"dataId\":\"\",\"id\":\"573\",\"name\":\"安图县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":574,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"道里区\\\"]\",\"dataId\":\"\",\"id\":\"574\",\"name\":\"道里区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":575,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"南岗区\\\"]\",\"dataId\":\"\",\"id\":\"575\",\"name\":\"南岗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":576,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"道外区\\\"]\",\"dataId\":\"\",\"id\":\"576\",\"name\":\"道外区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":577,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"香坊区\\\"]\",\"dataId\":\"\",\"id\":\"577\",\"name\":\"香坊区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":578,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"动力区\\\"]\",\"dataId\":\"\",\"id\":\"578\",\"name\":\"动力区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":579,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"平房区\\\"]\",\"dataId\":\"\",\"id\":\"579\",\"name\":\"平房区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":580,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"松北区\\\"]\",\"dataId\":\"\",\"id\":\"580\",\"name\":\"松北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":581,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"呼兰区\\\"]\",\"dataId\":\"\",\"id\":\"581\",\"name\":\"呼兰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":582,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"依兰县\\\"]\",\"dataId\":\"\",\"id\":\"582\",\"name\":\"依兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":583,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"方正县\\\"]\",\"dataId\":\"\",\"id\":\"583\",\"name\":\"方正县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":584,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"宾县\\\"]\",\"dataId\":\"\",\"id\":\"584\",\"name\":\"宾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":585,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"巴彦县\\\"]\",\"dataId\":\"\",\"id\":\"585\",\"name\":\"巴彦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":586,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"木兰县\\\"]\",\"dataId\":\"\",\"id\":\"586\",\"name\":\"木兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":587,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"通河县\\\"]\",\"dataId\":\"\",\"id\":\"587\",\"name\":\"通河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":588,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"延寿县\\\"]\",\"dataId\":\"\",\"id\":\"588\",\"name\":\"延寿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":589,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"阿城市\\\"]\",\"dataId\":\"\",\"id\":\"589\",\"name\":\"阿城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":590,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"双城市\\\"]\",\"dataId\":\"\",\"id\":\"590\",\"name\":\"双城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":591,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"尚志市\\\"]\",\"dataId\":\"\",\"id\":\"591\",\"name\":\"尚志市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":592,\"values\":{\"cityId\":\"60\",\"codes\":\"[\\\"五常市\\\"]\",\"dataId\":\"\",\"id\":\"592\",\"name\":\"五常市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":593,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"龙沙区\\\"]\",\"dataId\":\"\",\"id\":\"593\",\"name\":\"龙沙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":594,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"建华区\\\"]\",\"dataId\":\"\",\"id\":\"594\",\"name\":\"建华区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":595,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"铁锋区\\\"]\",\"dataId\":\"\",\"id\":\"595\",\"name\":\"铁锋区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":596,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"昂昂溪区\\\"]\",\"dataId\":\"\",\"id\":\"596\",\"name\":\"昂昂溪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":597,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"富拉尔基区\\\"]\",\"dataId\":\"\",\"id\":\"597\",\"name\":\"富拉尔基区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":598,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"碾子山区\\\"]\",\"dataId\":\"\",\"id\":\"598\",\"name\":\"碾子山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":599,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"梅里斯达斡尔族区\\\"]\",\"dataId\":\"\",\"id\":\"599\",\"name\":\"梅里斯达斡尔族区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":600,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"龙江县\\\"]\",\"dataId\":\"\",\"id\":\"600\",\"name\":\"龙江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":601,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"依安县\\\"]\",\"dataId\":\"\",\"id\":\"601\",\"name\":\"依安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":602,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"泰来县\\\"]\",\"dataId\":\"\",\"id\":\"602\",\"name\":\"泰来县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":603,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"甘南县\\\"]\",\"dataId\":\"\",\"id\":\"603\",\"name\":\"甘南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":604,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"富裕县\\\"]\",\"dataId\":\"\",\"id\":\"604\",\"name\":\"富裕县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":605,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"克山县\\\"]\",\"dataId\":\"\",\"id\":\"605\",\"name\":\"克山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":606,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"克东县\\\"]\",\"dataId\":\"\",\"id\":\"606\",\"name\":\"克东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":607,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"拜泉县\\\"]\",\"dataId\":\"\",\"id\":\"607\",\"name\":\"拜泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":608,\"values\":{\"cityId\":\"61\",\"codes\":\"[\\\"讷河市\\\"]\",\"dataId\":\"\",\"id\":\"608\",\"name\":\"讷河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":609,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"鸡冠区\\\"]\",\"dataId\":\"\",\"id\":\"609\",\"name\":\"鸡冠区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":610,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"恒山区\\\"]\",\"dataId\":\"\",\"id\":\"610\",\"name\":\"恒山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":611,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"滴道区\\\"]\",\"dataId\":\"\",\"id\":\"611\",\"name\":\"滴道区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":612,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"梨树区\\\"]\",\"dataId\":\"\",\"id\":\"612\",\"name\":\"梨树区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":613,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"城子河区\\\"]\",\"dataId\":\"\",\"id\":\"613\",\"name\":\"城子河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":614,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"麻山区\\\"]\",\"dataId\":\"\",\"id\":\"614\",\"name\":\"麻山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":615,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"鸡东县\\\"]\",\"dataId\":\"\",\"id\":\"615\",\"name\":\"鸡东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":616,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"虎林市\\\"]\",\"dataId\":\"\",\"id\":\"616\",\"name\":\"虎林市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":617,\"values\":{\"cityId\":\"62\",\"codes\":\"[\\\"密山市\\\"]\",\"dataId\":\"\",\"id\":\"617\",\"name\":\"密山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":618,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"向阳区\\\"]\",\"dataId\":\"\",\"id\":\"618\",\"name\":\"向阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":619,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"工农区\\\"]\",\"dataId\":\"\",\"id\":\"619\",\"name\":\"工农区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":620,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"南山区\\\"]\",\"dataId\":\"\",\"id\":\"620\",\"name\":\"南山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":621,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"兴安区\\\"]\",\"dataId\":\"\",\"id\":\"621\",\"name\":\"兴安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":622,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"东山区\\\"]\",\"dataId\":\"\",\"id\":\"622\",\"name\":\"东山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":623,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"兴山区\\\"]\",\"dataId\":\"\",\"id\":\"623\",\"name\":\"兴山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":624,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"萝北县\\\"]\",\"dataId\":\"\",\"id\":\"624\",\"name\":\"萝北县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":625,\"values\":{\"cityId\":\"63\",\"codes\":\"[\\\"绥滨县\\\"]\",\"dataId\":\"\",\"id\":\"625\",\"name\":\"绥滨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":626,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"尖山区\\\"]\",\"dataId\":\"\",\"id\":\"626\",\"name\":\"尖山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":627,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"岭东区\\\"]\",\"dataId\":\"\",\"id\":\"627\",\"name\":\"岭东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":628,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"四方台区\\\"]\",\"dataId\":\"\",\"id\":\"628\",\"name\":\"四方台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":629,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"宝山区\\\"]\",\"dataId\":\"\",\"id\":\"629\",\"name\":\"宝山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":630,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"集贤县\\\"]\",\"dataId\":\"\",\"id\":\"630\",\"name\":\"集贤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":631,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"友谊县\\\"]\",\"dataId\":\"\",\"id\":\"631\",\"name\":\"友谊县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":632,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"宝清县\\\"]\",\"dataId\":\"\",\"id\":\"632\",\"name\":\"宝清县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":633,\"values\":{\"cityId\":\"64\",\"codes\":\"[\\\"饶河县\\\"]\",\"dataId\":\"\",\"id\":\"633\",\"name\":\"饶河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":634,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"萨尔图区\\\"]\",\"dataId\":\"\",\"id\":\"634\",\"name\":\"萨尔图区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":635,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"龙凤区\\\"]\",\"dataId\":\"\",\"id\":\"635\",\"name\":\"龙凤区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":636,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"让胡路区\\\"]\",\"dataId\":\"\",\"id\":\"636\",\"name\":\"让胡路区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":637,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"红岗区\\\"]\",\"dataId\":\"\",\"id\":\"637\",\"name\":\"红岗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":638,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"大同区\\\"]\",\"dataId\":\"\",\"id\":\"638\",\"name\":\"大同区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":639,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"肇州县\\\"]\",\"dataId\":\"\",\"id\":\"639\",\"name\":\"肇州县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":640,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"肇源县\\\"]\",\"dataId\":\"\",\"id\":\"640\",\"name\":\"肇源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":641,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"林甸县\\\"]\",\"dataId\":\"\",\"id\":\"641\",\"name\":\"林甸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":642,\"values\":{\"cityId\":\"65\",\"codes\":\"[\\\"杜尔伯特蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"642\",\"name\":\"杜尔伯特蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":643,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"伊春区\\\"]\",\"dataId\":\"\",\"id\":\"643\",\"name\":\"伊春区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":644,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"南岔区\\\"]\",\"dataId\":\"\",\"id\":\"644\",\"name\":\"南岔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":645,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"友好区\\\"]\",\"dataId\":\"\",\"id\":\"645\",\"name\":\"友好区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":646,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"西林区\\\"]\",\"dataId\":\"\",\"id\":\"646\",\"name\":\"西林区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":647,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"翠峦区\\\"]\",\"dataId\":\"\",\"id\":\"647\",\"name\":\"翠峦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":648,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"新青区\\\"]\",\"dataId\":\"\",\"id\":\"648\",\"name\":\"新青区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":649,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"美溪区\\\"]\",\"dataId\":\"\",\"id\":\"649\",\"name\":\"美溪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":650,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"金山屯区\\\"]\",\"dataId\":\"\",\"id\":\"650\",\"name\":\"金山屯区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":651,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"五营区\\\"]\",\"dataId\":\"\",\"id\":\"651\",\"name\":\"五营区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":652,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"乌马河区\\\"]\",\"dataId\":\"\",\"id\":\"652\",\"name\":\"乌马河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":653,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"汤旺河区\\\"]\",\"dataId\":\"\",\"id\":\"653\",\"name\":\"汤旺河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":654,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"带岭区\\\"]\",\"dataId\":\"\",\"id\":\"654\",\"name\":\"带岭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":655,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"乌伊岭区\\\"]\",\"dataId\":\"\",\"id\":\"655\",\"name\":\"乌伊岭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":656,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"红星区\\\"]\",\"dataId\":\"\",\"id\":\"656\",\"name\":\"红星区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":657,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"上甘岭区\\\"]\",\"dataId\":\"\",\"id\":\"657\",\"name\":\"上甘岭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":658,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"嘉荫县\\\"]\",\"dataId\":\"\",\"id\":\"658\",\"name\":\"嘉荫县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":659,\"values\":{\"cityId\":\"66\",\"codes\":\"[\\\"铁力市\\\"]\",\"dataId\":\"\",\"id\":\"659\",\"name\":\"铁力市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":660,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"永红区\\\"]\",\"dataId\":\"\",\"id\":\"660\",\"name\":\"永红区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":661,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"前进区\\\"]\",\"dataId\":\"\",\"id\":\"661\",\"name\":\"前进区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":662,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"东风区\\\"]\",\"dataId\":\"\",\"id\":\"662\",\"name\":\"东风区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":663,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"桦南县\\\"]\",\"dataId\":\"\",\"id\":\"663\",\"name\":\"桦南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":664,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"桦川县\\\"]\",\"dataId\":\"\",\"id\":\"664\",\"name\":\"桦川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":665,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"汤原县\\\"]\",\"dataId\":\"\",\"id\":\"665\",\"name\":\"汤原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":666,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"抚远县\\\"]\",\"dataId\":\"\",\"id\":\"666\",\"name\":\"抚远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":667,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"同江市\\\"]\",\"dataId\":\"\",\"id\":\"667\",\"name\":\"同江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":668,\"values\":{\"cityId\":\"67\",\"codes\":\"[\\\"富锦市\\\"]\",\"dataId\":\"\",\"id\":\"668\",\"name\":\"富锦市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":669,\"values\":{\"cityId\":\"68\",\"codes\":\"[\\\"新兴区\\\"]\",\"dataId\":\"\",\"id\":\"669\",\"name\":\"新兴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":670,\"values\":{\"cityId\":\"68\",\"codes\":\"[\\\"桃山区\\\"]\",\"dataId\":\"\",\"id\":\"670\",\"name\":\"桃山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":671,\"values\":{\"cityId\":\"68\",\"codes\":\"[\\\"茄子河区\\\"]\",\"dataId\":\"\",\"id\":\"671\",\"name\":\"茄子河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":672,\"values\":{\"cityId\":\"68\",\"codes\":\"[\\\"勃利县\\\"]\",\"dataId\":\"\",\"id\":\"672\",\"name\":\"勃利县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":673,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"东安区\\\"]\",\"dataId\":\"\",\"id\":\"673\",\"name\":\"东安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":674,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"阳明区\\\"]\",\"dataId\":\"\",\"id\":\"674\",\"name\":\"阳明区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":675,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"爱民区\\\"]\",\"dataId\":\"\",\"id\":\"675\",\"name\":\"爱民区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":676,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"东宁县\\\"]\",\"dataId\":\"\",\"id\":\"676\",\"name\":\"东宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":677,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"林口县\\\"]\",\"dataId\":\"\",\"id\":\"677\",\"name\":\"林口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":678,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"绥芬河市\\\"]\",\"dataId\":\"\",\"id\":\"678\",\"name\":\"绥芬河市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":679,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"海林市\\\"]\",\"dataId\":\"\",\"id\":\"679\",\"name\":\"海林市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":680,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"宁安市\\\"]\",\"dataId\":\"\",\"id\":\"680\",\"name\":\"宁安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":681,\"values\":{\"cityId\":\"69\",\"codes\":\"[\\\"穆棱市\\\"]\",\"dataId\":\"\",\"id\":\"681\",\"name\":\"穆棱市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":682,\"values\":{\"cityId\":\"70\",\"codes\":\"[\\\"爱辉区\\\"]\",\"dataId\":\"\",\"id\":\"682\",\"name\":\"爱辉区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":683,\"values\":{\"cityId\":\"70\",\"codes\":\"[\\\"嫩江县\\\"]\",\"dataId\":\"\",\"id\":\"683\",\"name\":\"嫩江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":684,\"values\":{\"cityId\":\"70\",\"codes\":\"[\\\"逊克县\\\"]\",\"dataId\":\"\",\"id\":\"684\",\"name\":\"逊克县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":685,\"values\":{\"cityId\":\"70\",\"codes\":\"[\\\"孙吴县\\\"]\",\"dataId\":\"\",\"id\":\"685\",\"name\":\"孙吴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":686,\"values\":{\"cityId\":\"70\",\"codes\":\"[\\\"北安市\\\"]\",\"dataId\":\"\",\"id\":\"686\",\"name\":\"北安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":687,\"values\":{\"cityId\":\"70\",\"codes\":\"[\\\"五大连池市\\\"]\",\"dataId\":\"\",\"id\":\"687\",\"name\":\"五大连池市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":688,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"北林区\\\"]\",\"dataId\":\"\",\"id\":\"688\",\"name\":\"北林区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":689,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"望奎县\\\"]\",\"dataId\":\"\",\"id\":\"689\",\"name\":\"望奎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":690,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"兰西县\\\"]\",\"dataId\":\"\",\"id\":\"690\",\"name\":\"兰西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":691,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"青冈县\\\"]\",\"dataId\":\"\",\"id\":\"691\",\"name\":\"青冈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":692,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"庆安县\\\"]\",\"dataId\":\"\",\"id\":\"692\",\"name\":\"庆安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":693,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"明水县\\\"]\",\"dataId\":\"\",\"id\":\"693\",\"name\":\"明水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":694,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"绥棱县\\\"]\",\"dataId\":\"\",\"id\":\"694\",\"name\":\"绥棱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":695,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"安达市\\\"]\",\"dataId\":\"\",\"id\":\"695\",\"name\":\"安达市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":696,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"肇东市\\\"]\",\"dataId\":\"\",\"id\":\"696\",\"name\":\"肇东市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":697,\"values\":{\"cityId\":\"71\",\"codes\":\"[\\\"海伦市\\\"]\",\"dataId\":\"\",\"id\":\"697\",\"name\":\"海伦市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":698,\"values\":{\"cityId\":\"72\",\"codes\":\"[\\\"呼玛县\\\"]\",\"dataId\":\"\",\"id\":\"698\",\"name\":\"呼玛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":699,\"values\":{\"cityId\":\"72\",\"codes\":\"[\\\"塔河县\\\"]\",\"dataId\":\"\",\"id\":\"699\",\"name\":\"塔河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":700,\"values\":{\"cityId\":\"72\",\"codes\":\"[\\\"漠河县\\\"]\",\"dataId\":\"\",\"id\":\"700\",\"name\":\"漠河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":701,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"黄浦区\\\"]\",\"dataId\":\"\",\"id\":\"701\",\"name\":\"黄浦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":702,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"卢湾区\\\"]\",\"dataId\":\"\",\"id\":\"702\",\"name\":\"卢湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":703,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"徐汇区\\\"]\",\"dataId\":\"\",\"id\":\"703\",\"name\":\"徐汇区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":704,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"长宁区\\\"]\",\"dataId\":\"\",\"id\":\"704\",\"name\":\"长宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":705,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"静安区\\\"]\",\"dataId\":\"\",\"id\":\"705\",\"name\":\"静安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":706,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"普陀区\\\"]\",\"dataId\":\"\",\"id\":\"706\",\"name\":\"普陀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":707,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"闸北区\\\"]\",\"dataId\":\"\",\"id\":\"707\",\"name\":\"闸北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":708,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"虹口区\\\"]\",\"dataId\":\"\",\"id\":\"708\",\"name\":\"虹口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":709,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"杨浦区\\\"]\",\"dataId\":\"\",\"id\":\"709\",\"name\":\"杨浦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":710,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"闵行区\\\"]\",\"dataId\":\"\",\"id\":\"710\",\"name\":\"闵行区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":711,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"嘉定区\\\"]\",\"dataId\":\"\",\"id\":\"711\",\"name\":\"嘉定区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":712,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"浦东新区\\\"]\",\"dataId\":\"\",\"id\":\"712\",\"name\":\"浦东新区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":713,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"金山区\\\"]\",\"dataId\":\"\",\"id\":\"713\",\"name\":\"金山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":714,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"松江区\\\"]\",\"dataId\":\"\",\"id\":\"714\",\"name\":\"松江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":715,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"青浦区\\\"]\",\"dataId\":\"\",\"id\":\"715\",\"name\":\"青浦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":716,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"南汇区\\\"]\",\"dataId\":\"\",\"id\":\"716\",\"name\":\"南汇区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":717,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"奉贤区\\\"]\",\"dataId\":\"\",\"id\":\"717\",\"name\":\"奉贤区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":718,\"values\":{\"cityId\":\"73\",\"codes\":\"[\\\"崇明县\\\"]\",\"dataId\":\"\",\"id\":\"718\",\"name\":\"崇明县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":719,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"玄武区\\\"]\",\"dataId\":\"\",\"id\":\"719\",\"name\":\"玄武区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":720,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"白下区\\\"]\",\"dataId\":\"\",\"id\":\"720\",\"name\":\"白下区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":721,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"秦淮区\\\"]\",\"dataId\":\"\",\"id\":\"721\",\"name\":\"秦淮区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":722,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"建邺区\\\"]\",\"dataId\":\"\",\"id\":\"722\",\"name\":\"建邺区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":723,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"鼓楼区\\\"]\",\"dataId\":\"\",\"id\":\"723\",\"name\":\"鼓楼区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":724,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"下关区\\\"]\",\"dataId\":\"\",\"id\":\"724\",\"name\":\"下关区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":725,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"浦口区\\\"]\",\"dataId\":\"\",\"id\":\"725\",\"name\":\"浦口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":726,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"栖霞区\\\"]\",\"dataId\":\"\",\"id\":\"726\",\"name\":\"栖霞区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":727,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"雨花台区\\\"]\",\"dataId\":\"\",\"id\":\"727\",\"name\":\"雨花台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":728,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"江宁区\\\"]\",\"dataId\":\"\",\"id\":\"728\",\"name\":\"江宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":729,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"六合区\\\"]\",\"dataId\":\"\",\"id\":\"729\",\"name\":\"六合区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":730,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"溧水县\\\"]\",\"dataId\":\"\",\"id\":\"730\",\"name\":\"溧水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":731,\"values\":{\"cityId\":\"74\",\"codes\":\"[\\\"高淳县\\\"]\",\"dataId\":\"\",\"id\":\"731\",\"name\":\"高淳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":732,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"崇安区\\\"]\",\"dataId\":\"\",\"id\":\"732\",\"name\":\"崇安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":733,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"南长区\\\"]\",\"dataId\":\"\",\"id\":\"733\",\"name\":\"南长区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":734,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"北塘区\\\"]\",\"dataId\":\"\",\"id\":\"734\",\"name\":\"北塘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":735,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"锡山区\\\"]\",\"dataId\":\"\",\"id\":\"735\",\"name\":\"锡山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":736,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"惠山区\\\"]\",\"dataId\":\"\",\"id\":\"736\",\"name\":\"惠山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":737,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"滨湖区\\\"]\",\"dataId\":\"\",\"id\":\"737\",\"name\":\"滨湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":738,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"江阴市\\\"]\",\"dataId\":\"\",\"id\":\"738\",\"name\":\"江阴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":739,\"values\":{\"cityId\":\"75\",\"codes\":\"[\\\"宜兴市\\\"]\",\"dataId\":\"\",\"id\":\"739\",\"name\":\"宜兴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":740,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"云龙区\\\"]\",\"dataId\":\"\",\"id\":\"740\",\"name\":\"云龙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":741,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"九里区\\\"]\",\"dataId\":\"\",\"id\":\"741\",\"name\":\"九里区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":742,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"贾汪区\\\"]\",\"dataId\":\"\",\"id\":\"742\",\"name\":\"贾汪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":743,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"泉山区\\\"]\",\"dataId\":\"\",\"id\":\"743\",\"name\":\"泉山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":744,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"丰县\\\"]\",\"dataId\":\"\",\"id\":\"744\",\"name\":\"丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":745,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"沛县\\\"]\",\"dataId\":\"\",\"id\":\"745\",\"name\":\"沛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":746,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"铜山县\\\"]\",\"dataId\":\"\",\"id\":\"746\",\"name\":\"铜山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":747,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"睢宁县\\\"]\",\"dataId\":\"\",\"id\":\"747\",\"name\":\"睢宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":748,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"新沂市\\\"]\",\"dataId\":\"\",\"id\":\"748\",\"name\":\"新沂市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":749,\"values\":{\"cityId\":\"76\",\"codes\":\"[\\\"邳州市\\\"]\",\"dataId\":\"\",\"id\":\"749\",\"name\":\"邳州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":750,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"天宁区\\\"]\",\"dataId\":\"\",\"id\":\"750\",\"name\":\"天宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":751,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"钟楼区\\\"]\",\"dataId\":\"\",\"id\":\"751\",\"name\":\"钟楼区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":752,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"戚墅堰区\\\"]\",\"dataId\":\"\",\"id\":\"752\",\"name\":\"戚墅堰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":753,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"新北区\\\"]\",\"dataId\":\"\",\"id\":\"753\",\"name\":\"新北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":754,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"武进区\\\"]\",\"dataId\":\"\",\"id\":\"754\",\"name\":\"武进区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":755,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"溧阳市\\\"]\",\"dataId\":\"\",\"id\":\"755\",\"name\":\"溧阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":756,\"values\":{\"cityId\":\"77\",\"codes\":\"[\\\"金坛市\\\"]\",\"dataId\":\"\",\"id\":\"756\",\"name\":\"金坛市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":757,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"沧浪区\\\"]\",\"dataId\":\"\",\"id\":\"757\",\"name\":\"沧浪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":758,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"平江区\\\"]\",\"dataId\":\"\",\"id\":\"758\",\"name\":\"平江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":759,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"金阊区\\\"]\",\"dataId\":\"\",\"id\":\"759\",\"name\":\"金阊区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":760,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"虎丘区\\\"]\",\"dataId\":\"\",\"id\":\"760\",\"name\":\"虎丘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":761,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"吴中区\\\"]\",\"dataId\":\"\",\"id\":\"761\",\"name\":\"吴中区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":762,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"相城区\\\"]\",\"dataId\":\"\",\"id\":\"762\",\"name\":\"相城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":763,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"常熟市\\\"]\",\"dataId\":\"\",\"id\":\"763\",\"name\":\"常熟市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":764,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"张家港市\\\"]\",\"dataId\":\"\",\"id\":\"764\",\"name\":\"张家港市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":765,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"昆山市\\\"]\",\"dataId\":\"\",\"id\":\"765\",\"name\":\"昆山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":766,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"吴江市\\\"]\",\"dataId\":\"\",\"id\":\"766\",\"name\":\"吴江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":767,\"values\":{\"cityId\":\"78\",\"codes\":\"[\\\"太仓市\\\"]\",\"dataId\":\"\",\"id\":\"767\",\"name\":\"太仓市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":768,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"崇川区\\\"]\",\"dataId\":\"\",\"id\":\"768\",\"name\":\"崇川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":769,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"港闸区\\\"]\",\"dataId\":\"\",\"id\":\"769\",\"name\":\"港闸区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":770,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"海安县\\\"]\",\"dataId\":\"\",\"id\":\"770\",\"name\":\"海安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":771,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"如东县\\\"]\",\"dataId\":\"\",\"id\":\"771\",\"name\":\"如东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":772,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"启东市\\\"]\",\"dataId\":\"\",\"id\":\"772\",\"name\":\"启东市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":773,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"如皋市\\\"]\",\"dataId\":\"\",\"id\":\"773\",\"name\":\"如皋市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":774,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"通州市\\\"]\",\"dataId\":\"\",\"id\":\"774\",\"name\":\"通州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":775,\"values\":{\"cityId\":\"79\",\"codes\":\"[\\\"海门市\\\"]\",\"dataId\":\"\",\"id\":\"775\",\"name\":\"海门市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":776,\"values\":{\"cityId\":\"80\",\"codes\":\"[\\\"连云区\\\"]\",\"dataId\":\"\",\"id\":\"776\",\"name\":\"连云区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":777,\"values\":{\"cityId\":\"80\",\"codes\":\"[\\\"新浦区\\\"]\",\"dataId\":\"\",\"id\":\"777\",\"name\":\"新浦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":778,\"values\":{\"cityId\":\"80\",\"codes\":\"[\\\"赣榆县\\\"]\",\"dataId\":\"\",\"id\":\"778\",\"name\":\"赣榆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":779,\"values\":{\"cityId\":\"80\",\"codes\":\"[\\\"东海县\\\"]\",\"dataId\":\"\",\"id\":\"779\",\"name\":\"东海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":780,\"values\":{\"cityId\":\"80\",\"codes\":\"[\\\"灌云县\\\"]\",\"dataId\":\"\",\"id\":\"780\",\"name\":\"灌云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":781,\"values\":{\"cityId\":\"80\",\"codes\":\"[\\\"灌南县\\\"]\",\"dataId\":\"\",\"id\":\"781\",\"name\":\"灌南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":782,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"楚州区\\\"]\",\"dataId\":\"\",\"id\":\"782\",\"name\":\"楚州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":783,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"淮阴区\\\"]\",\"dataId\":\"\",\"id\":\"783\",\"name\":\"淮阴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":784,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"清浦区\\\"]\",\"dataId\":\"\",\"id\":\"784\",\"name\":\"清浦区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":785,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"涟水县\\\"]\",\"dataId\":\"\",\"id\":\"785\",\"name\":\"涟水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":786,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"洪泽县\\\"]\",\"dataId\":\"\",\"id\":\"786\",\"name\":\"洪泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":787,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"盱眙县\\\"]\",\"dataId\":\"\",\"id\":\"787\",\"name\":\"盱眙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":788,\"values\":{\"cityId\":\"81\",\"codes\":\"[\\\"金湖县\\\"]\",\"dataId\":\"\",\"id\":\"788\",\"name\":\"金湖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":789,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"亭湖区\\\"]\",\"dataId\":\"\",\"id\":\"789\",\"name\":\"亭湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":790,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"盐都区\\\"]\",\"dataId\":\"\",\"id\":\"790\",\"name\":\"盐都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":791,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"响水县\\\"]\",\"dataId\":\"\",\"id\":\"791\",\"name\":\"响水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":792,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"滨海县\\\"]\",\"dataId\":\"\",\"id\":\"792\",\"name\":\"滨海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":793,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"阜宁县\\\"]\",\"dataId\":\"\",\"id\":\"793\",\"name\":\"阜宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":794,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"射阳县\\\"]\",\"dataId\":\"\",\"id\":\"794\",\"name\":\"射阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":795,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"建湖县\\\"]\",\"dataId\":\"\",\"id\":\"795\",\"name\":\"建湖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":796,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"东台市\\\"]\",\"dataId\":\"\",\"id\":\"796\",\"name\":\"东台市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":797,\"values\":{\"cityId\":\"82\",\"codes\":\"[\\\"大丰市\\\"]\",\"dataId\":\"\",\"id\":\"797\",\"name\":\"大丰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":798,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"广陵区\\\"]\",\"dataId\":\"\",\"id\":\"798\",\"name\":\"广陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":799,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"邗江区\\\"]\",\"dataId\":\"\",\"id\":\"799\",\"name\":\"邗江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":800,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"维扬区\\\"]\",\"dataId\":\"\",\"id\":\"800\",\"name\":\"维扬区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":801,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"宝应县\\\"]\",\"dataId\":\"\",\"id\":\"801\",\"name\":\"宝应县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":802,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"仪征市\\\"]\",\"dataId\":\"\",\"id\":\"802\",\"name\":\"仪征市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":803,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"高邮市\\\"]\",\"dataId\":\"\",\"id\":\"803\",\"name\":\"高邮市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":804,\"values\":{\"cityId\":\"83\",\"codes\":\"[\\\"江都市\\\"]\",\"dataId\":\"\",\"id\":\"804\",\"name\":\"江都市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":805,\"values\":{\"cityId\":\"84\",\"codes\":\"[\\\"京口区\\\"]\",\"dataId\":\"\",\"id\":\"805\",\"name\":\"京口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":806,\"values\":{\"cityId\":\"84\",\"codes\":\"[\\\"润州区\\\"]\",\"dataId\":\"\",\"id\":\"806\",\"name\":\"润州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":807,\"values\":{\"cityId\":\"84\",\"codes\":\"[\\\"丹徒区\\\"]\",\"dataId\":\"\",\"id\":\"807\",\"name\":\"丹徒区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":808,\"values\":{\"cityId\":\"84\",\"codes\":\"[\\\"丹阳市\\\"]\",\"dataId\":\"\",\"id\":\"808\",\"name\":\"丹阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":809,\"values\":{\"cityId\":\"84\",\"codes\":\"[\\\"扬中市\\\"]\",\"dataId\":\"\",\"id\":\"809\",\"name\":\"扬中市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":810,\"values\":{\"cityId\":\"84\",\"codes\":\"[\\\"句容市\\\"]\",\"dataId\":\"\",\"id\":\"810\",\"name\":\"句容市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":811,\"values\":{\"cityId\":\"85\",\"codes\":\"[\\\"海陵区\\\"]\",\"dataId\":\"\",\"id\":\"811\",\"name\":\"海陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":812,\"values\":{\"cityId\":\"85\",\"codes\":\"[\\\"高港区\\\"]\",\"dataId\":\"\",\"id\":\"812\",\"name\":\"高港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":813,\"values\":{\"cityId\":\"85\",\"codes\":\"[\\\"兴化市\\\"]\",\"dataId\":\"\",\"id\":\"813\",\"name\":\"兴化市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":814,\"values\":{\"cityId\":\"85\",\"codes\":\"[\\\"靖江市\\\"]\",\"dataId\":\"\",\"id\":\"814\",\"name\":\"靖江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":815,\"values\":{\"cityId\":\"85\",\"codes\":\"[\\\"泰兴市\\\"]\",\"dataId\":\"\",\"id\":\"815\",\"name\":\"泰兴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":816,\"values\":{\"cityId\":\"85\",\"codes\":\"[\\\"姜堰市\\\"]\",\"dataId\":\"\",\"id\":\"816\",\"name\":\"姜堰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":817,\"values\":{\"cityId\":\"86\",\"codes\":\"[\\\"宿城区\\\"]\",\"dataId\":\"\",\"id\":\"817\",\"name\":\"宿城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":818,\"values\":{\"cityId\":\"86\",\"codes\":\"[\\\"宿豫区\\\"]\",\"dataId\":\"\",\"id\":\"818\",\"name\":\"宿豫区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":819,\"values\":{\"cityId\":\"86\",\"codes\":\"[\\\"沭阳县\\\"]\",\"dataId\":\"\",\"id\":\"819\",\"name\":\"沭阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":820,\"values\":{\"cityId\":\"86\",\"codes\":\"[\\\"泗阳县\\\"]\",\"dataId\":\"\",\"id\":\"820\",\"name\":\"泗阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":821,\"values\":{\"cityId\":\"86\",\"codes\":\"[\\\"泗洪县\\\"]\",\"dataId\":\"\",\"id\":\"821\",\"name\":\"泗洪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":822,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"上城区\\\"]\",\"dataId\":\"\",\"id\":\"822\",\"name\":\"上城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":823,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"下城区\\\"]\",\"dataId\":\"\",\"id\":\"823\",\"name\":\"下城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":824,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"江干区\\\"]\",\"dataId\":\"\",\"id\":\"824\",\"name\":\"江干区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":825,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"拱墅区\\\"]\",\"dataId\":\"\",\"id\":\"825\",\"name\":\"拱墅区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":826,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"西湖区\\\"]\",\"dataId\":\"\",\"id\":\"826\",\"name\":\"西湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":827,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"滨江区\\\"]\",\"dataId\":\"\",\"id\":\"827\",\"name\":\"滨江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":828,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"萧山区\\\"]\",\"dataId\":\"\",\"id\":\"828\",\"name\":\"萧山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":829,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"余杭区\\\"]\",\"dataId\":\"\",\"id\":\"829\",\"name\":\"余杭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":830,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"桐庐县\\\"]\",\"dataId\":\"\",\"id\":\"830\",\"name\":\"桐庐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":831,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"淳安县\\\"]\",\"dataId\":\"\",\"id\":\"831\",\"name\":\"淳安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":832,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"建德市\\\"]\",\"dataId\":\"\",\"id\":\"832\",\"name\":\"建德市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":833,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"富阳市\\\"]\",\"dataId\":\"\",\"id\":\"833\",\"name\":\"富阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":834,\"values\":{\"cityId\":\"87\",\"codes\":\"[\\\"临安市\\\"]\",\"dataId\":\"\",\"id\":\"834\",\"name\":\"临安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":835,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"海曙区\\\"]\",\"dataId\":\"\",\"id\":\"835\",\"name\":\"海曙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":836,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"江东区\\\"]\",\"dataId\":\"\",\"id\":\"836\",\"name\":\"江东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":837,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"江北区\\\"]\",\"dataId\":\"\",\"id\":\"837\",\"name\":\"江北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":838,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"北仑区\\\"]\",\"dataId\":\"\",\"id\":\"838\",\"name\":\"北仑区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":839,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"镇海区\\\"]\",\"dataId\":\"\",\"id\":\"839\",\"name\":\"镇海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":840,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"鄞州区\\\"]\",\"dataId\":\"\",\"id\":\"840\",\"name\":\"鄞州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":841,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"象山县\\\"]\",\"dataId\":\"\",\"id\":\"841\",\"name\":\"象山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":842,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"宁海县\\\"]\",\"dataId\":\"\",\"id\":\"842\",\"name\":\"宁海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":843,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"余姚市\\\"]\",\"dataId\":\"\",\"id\":\"843\",\"name\":\"余姚市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":844,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"慈溪市\\\"]\",\"dataId\":\"\",\"id\":\"844\",\"name\":\"慈溪市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":845,\"values\":{\"cityId\":\"88\",\"codes\":\"[\\\"奉化市\\\"]\",\"dataId\":\"\",\"id\":\"845\",\"name\":\"奉化市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":846,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"鹿城区\\\"]\",\"dataId\":\"\",\"id\":\"846\",\"name\":\"鹿城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":847,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"龙湾区\\\"]\",\"dataId\":\"\",\"id\":\"847\",\"name\":\"龙湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":848,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"瓯海区\\\"]\",\"dataId\":\"\",\"id\":\"848\",\"name\":\"瓯海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":849,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"洞头县\\\"]\",\"dataId\":\"\",\"id\":\"849\",\"name\":\"洞头县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":850,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"永嘉县\\\"]\",\"dataId\":\"\",\"id\":\"850\",\"name\":\"永嘉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":851,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"平阳县\\\"]\",\"dataId\":\"\",\"id\":\"851\",\"name\":\"平阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":852,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"苍南县\\\"]\",\"dataId\":\"\",\"id\":\"852\",\"name\":\"苍南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":853,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"文成县\\\"]\",\"dataId\":\"\",\"id\":\"853\",\"name\":\"文成县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":854,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"泰顺县\\\"]\",\"dataId\":\"\",\"id\":\"854\",\"name\":\"泰顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":855,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"瑞安市\\\"]\",\"dataId\":\"\",\"id\":\"855\",\"name\":\"瑞安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":856,\"values\":{\"cityId\":\"89\",\"codes\":\"[\\\"乐清市\\\"]\",\"dataId\":\"\",\"id\":\"856\",\"name\":\"乐清市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":857,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"秀城区\\\"]\",\"dataId\":\"\",\"id\":\"857\",\"name\":\"秀城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":858,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"秀洲区\\\"]\",\"dataId\":\"\",\"id\":\"858\",\"name\":\"秀洲区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":859,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"嘉善县\\\"]\",\"dataId\":\"\",\"id\":\"859\",\"name\":\"嘉善县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":860,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"海盐县\\\"]\",\"dataId\":\"\",\"id\":\"860\",\"name\":\"海盐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":861,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"海宁市\\\"]\",\"dataId\":\"\",\"id\":\"861\",\"name\":\"海宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":862,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"平湖市\\\"]\",\"dataId\":\"\",\"id\":\"862\",\"name\":\"平湖市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":863,\"values\":{\"cityId\":\"90\",\"codes\":\"[\\\"桐乡市\\\"]\",\"dataId\":\"\",\"id\":\"863\",\"name\":\"桐乡市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":864,\"values\":{\"cityId\":\"91\",\"codes\":\"[\\\"吴兴区\\\"]\",\"dataId\":\"\",\"id\":\"864\",\"name\":\"吴兴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":865,\"values\":{\"cityId\":\"91\",\"codes\":\"[\\\"南浔区\\\"]\",\"dataId\":\"\",\"id\":\"865\",\"name\":\"南浔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":866,\"values\":{\"cityId\":\"91\",\"codes\":\"[\\\"德清县\\\"]\",\"dataId\":\"\",\"id\":\"866\",\"name\":\"德清县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":867,\"values\":{\"cityId\":\"91\",\"codes\":\"[\\\"长兴县\\\"]\",\"dataId\":\"\",\"id\":\"867\",\"name\":\"长兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":868,\"values\":{\"cityId\":\"91\",\"codes\":\"[\\\"安吉县\\\"]\",\"dataId\":\"\",\"id\":\"868\",\"name\":\"安吉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":869,\"values\":{\"cityId\":\"92\",\"codes\":\"[\\\"越城区\\\"]\",\"dataId\":\"\",\"id\":\"869\",\"name\":\"越城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":870,\"values\":{\"cityId\":\"92\",\"codes\":\"[\\\"绍兴县\\\"]\",\"dataId\":\"\",\"id\":\"870\",\"name\":\"绍兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":871,\"values\":{\"cityId\":\"92\",\"codes\":\"[\\\"新昌县\\\"]\",\"dataId\":\"\",\"id\":\"871\",\"name\":\"新昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":872,\"values\":{\"cityId\":\"92\",\"codes\":\"[\\\"诸暨市\\\"]\",\"dataId\":\"\",\"id\":\"872\",\"name\":\"诸暨市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":873,\"values\":{\"cityId\":\"92\",\"codes\":\"[\\\"上虞市\\\"]\",\"dataId\":\"\",\"id\":\"873\",\"name\":\"上虞市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":874,\"values\":{\"cityId\":\"92\",\"codes\":\"[\\\"嵊州市\\\"]\",\"dataId\":\"\",\"id\":\"874\",\"name\":\"嵊州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":875,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"婺城区\\\"]\",\"dataId\":\"\",\"id\":\"875\",\"name\":\"婺城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":876,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"金东区\\\"]\",\"dataId\":\"\",\"id\":\"876\",\"name\":\"金东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":877,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"武义县\\\"]\",\"dataId\":\"\",\"id\":\"877\",\"name\":\"武义县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":878,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"浦江县\\\"]\",\"dataId\":\"\",\"id\":\"878\",\"name\":\"浦江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":879,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"磐安县\\\"]\",\"dataId\":\"\",\"id\":\"879\",\"name\":\"磐安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":880,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"兰溪市\\\"]\",\"dataId\":\"\",\"id\":\"880\",\"name\":\"兰溪市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":881,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"义乌市\\\"]\",\"dataId\":\"\",\"id\":\"881\",\"name\":\"义乌市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":882,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"东阳市\\\"]\",\"dataId\":\"\",\"id\":\"882\",\"name\":\"东阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":883,\"values\":{\"cityId\":\"93\",\"codes\":\"[\\\"永康市\\\"]\",\"dataId\":\"\",\"id\":\"883\",\"name\":\"永康市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":884,\"values\":{\"cityId\":\"94\",\"codes\":\"[\\\"柯城区\\\"]\",\"dataId\":\"\",\"id\":\"884\",\"name\":\"柯城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":885,\"values\":{\"cityId\":\"94\",\"codes\":\"[\\\"衢江区\\\"]\",\"dataId\":\"\",\"id\":\"885\",\"name\":\"衢江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":886,\"values\":{\"cityId\":\"94\",\"codes\":\"[\\\"常山县\\\"]\",\"dataId\":\"\",\"id\":\"886\",\"name\":\"常山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":887,\"values\":{\"cityId\":\"94\",\"codes\":\"[\\\"开化县\\\"]\",\"dataId\":\"\",\"id\":\"887\",\"name\":\"开化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":888,\"values\":{\"cityId\":\"94\",\"codes\":\"[\\\"龙游县\\\"]\",\"dataId\":\"\",\"id\":\"888\",\"name\":\"龙游县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":889,\"values\":{\"cityId\":\"94\",\"codes\":\"[\\\"江山市\\\"]\",\"dataId\":\"\",\"id\":\"889\",\"name\":\"江山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":890,\"values\":{\"cityId\":\"95\",\"codes\":\"[\\\"定海区\\\"]\",\"dataId\":\"\",\"id\":\"890\",\"name\":\"定海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":891,\"values\":{\"cityId\":\"95\",\"codes\":\"[\\\"岱山县\\\"]\",\"dataId\":\"\",\"id\":\"891\",\"name\":\"岱山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":892,\"values\":{\"cityId\":\"95\",\"codes\":\"[\\\"嵊泗县\\\"]\",\"dataId\":\"\",\"id\":\"892\",\"name\":\"嵊泗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":893,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"椒江区\\\"]\",\"dataId\":\"\",\"id\":\"893\",\"name\":\"椒江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":894,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"黄岩区\\\"]\",\"dataId\":\"\",\"id\":\"894\",\"name\":\"黄岩区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":895,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"路桥区\\\"]\",\"dataId\":\"\",\"id\":\"895\",\"name\":\"路桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":896,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"玉环县\\\"]\",\"dataId\":\"\",\"id\":\"896\",\"name\":\"玉环县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":897,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"三门县\\\"]\",\"dataId\":\"\",\"id\":\"897\",\"name\":\"三门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":898,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"天台县\\\"]\",\"dataId\":\"\",\"id\":\"898\",\"name\":\"天台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":899,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"仙居县\\\"]\",\"dataId\":\"\",\"id\":\"899\",\"name\":\"仙居县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":900,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"温岭市\\\"]\",\"dataId\":\"\",\"id\":\"900\",\"name\":\"温岭市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":901,\"values\":{\"cityId\":\"96\",\"codes\":\"[\\\"临海市\\\"]\",\"dataId\":\"\",\"id\":\"901\",\"name\":\"临海市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":902,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"莲都区\\\"]\",\"dataId\":\"\",\"id\":\"902\",\"name\":\"莲都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":903,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"青田县\\\"]\",\"dataId\":\"\",\"id\":\"903\",\"name\":\"青田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":904,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"缙云县\\\"]\",\"dataId\":\"\",\"id\":\"904\",\"name\":\"缙云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":905,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"遂昌县\\\"]\",\"dataId\":\"\",\"id\":\"905\",\"name\":\"遂昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":906,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"松阳县\\\"]\",\"dataId\":\"\",\"id\":\"906\",\"name\":\"松阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":907,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"云和县\\\"]\",\"dataId\":\"\",\"id\":\"907\",\"name\":\"云和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":908,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"庆元县\\\"]\",\"dataId\":\"\",\"id\":\"908\",\"name\":\"庆元县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":909,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"景宁畲族自治县\\\"]\",\"dataId\":\"\",\"id\":\"909\",\"name\":\"景宁畲族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":910,\"values\":{\"cityId\":\"97\",\"codes\":\"[\\\"龙泉市\\\"]\",\"dataId\":\"\",\"id\":\"910\",\"name\":\"龙泉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":911,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"瑶海区\\\"]\",\"dataId\":\"\",\"id\":\"911\",\"name\":\"瑶海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":912,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"庐阳区\\\"]\",\"dataId\":\"\",\"id\":\"912\",\"name\":\"庐阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":913,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"蜀山区\\\"]\",\"dataId\":\"\",\"id\":\"913\",\"name\":\"蜀山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":914,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"包河区\\\"]\",\"dataId\":\"\",\"id\":\"914\",\"name\":\"包河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":915,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"长丰县\\\"]\",\"dataId\":\"\",\"id\":\"915\",\"name\":\"长丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":916,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"肥东县\\\"]\",\"dataId\":\"\",\"id\":\"916\",\"name\":\"肥东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":917,\"values\":{\"cityId\":\"98\",\"codes\":\"[\\\"肥西县\\\"]\",\"dataId\":\"\",\"id\":\"917\",\"name\":\"肥西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":918,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"镜湖区\\\"]\",\"dataId\":\"\",\"id\":\"918\",\"name\":\"镜湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":919,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"马塘区\\\"]\",\"dataId\":\"\",\"id\":\"919\",\"name\":\"马塘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":920,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"新芜区\\\"]\",\"dataId\":\"\",\"id\":\"920\",\"name\":\"新芜区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":921,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"鸠江区\\\"]\",\"dataId\":\"\",\"id\":\"921\",\"name\":\"鸠江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":922,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"芜湖县\\\"]\",\"dataId\":\"\",\"id\":\"922\",\"name\":\"芜湖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":923,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"繁昌县\\\"]\",\"dataId\":\"\",\"id\":\"923\",\"name\":\"繁昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":924,\"values\":{\"cityId\":\"99\",\"codes\":\"[\\\"南陵县\\\"]\",\"dataId\":\"\",\"id\":\"924\",\"name\":\"南陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":925,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"龙子湖区\\\"]\",\"dataId\":\"\",\"id\":\"925\",\"name\":\"龙子湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":926,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"蚌山区\\\"]\",\"dataId\":\"\",\"id\":\"926\",\"name\":\"蚌山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":927,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"禹会区\\\"]\",\"dataId\":\"\",\"id\":\"927\",\"name\":\"禹会区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":928,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"淮上区\\\"]\",\"dataId\":\"\",\"id\":\"928\",\"name\":\"淮上区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":929,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"怀远县\\\"]\",\"dataId\":\"\",\"id\":\"929\",\"name\":\"怀远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":930,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"五河县\\\"]\",\"dataId\":\"\",\"id\":\"930\",\"name\":\"五河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":931,\"values\":{\"cityId\":\"100\",\"codes\":\"[\\\"固镇县\\\"]\",\"dataId\":\"\",\"id\":\"931\",\"name\":\"固镇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":932,\"values\":{\"cityId\":\"101\",\"codes\":\"[\\\"大通区\\\"]\",\"dataId\":\"\",\"id\":\"932\",\"name\":\"大通区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":933,\"values\":{\"cityId\":\"101\",\"codes\":\"[\\\"田家庵区\\\"]\",\"dataId\":\"\",\"id\":\"933\",\"name\":\"田家庵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":934,\"values\":{\"cityId\":\"101\",\"codes\":\"[\\\"谢家集区\\\"]\",\"dataId\":\"\",\"id\":\"934\",\"name\":\"谢家集区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":935,\"values\":{\"cityId\":\"101\",\"codes\":\"[\\\"八公山区\\\"]\",\"dataId\":\"\",\"id\":\"935\",\"name\":\"八公山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":936,\"values\":{\"cityId\":\"101\",\"codes\":\"[\\\"潘集区\\\"]\",\"dataId\":\"\",\"id\":\"936\",\"name\":\"潘集区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":937,\"values\":{\"cityId\":\"101\",\"codes\":\"[\\\"凤台县\\\"]\",\"dataId\":\"\",\"id\":\"937\",\"name\":\"凤台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":938,\"values\":{\"cityId\":\"102\",\"codes\":\"[\\\"金家庄区\\\"]\",\"dataId\":\"\",\"id\":\"938\",\"name\":\"金家庄区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":939,\"values\":{\"cityId\":\"102\",\"codes\":\"[\\\"花山区\\\"]\",\"dataId\":\"\",\"id\":\"939\",\"name\":\"花山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":940,\"values\":{\"cityId\":\"102\",\"codes\":\"[\\\"雨山区\\\"]\",\"dataId\":\"\",\"id\":\"940\",\"name\":\"雨山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":941,\"values\":{\"cityId\":\"102\",\"codes\":\"[\\\"当涂县\\\"]\",\"dataId\":\"\",\"id\":\"941\",\"name\":\"当涂县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":942,\"values\":{\"cityId\":\"103\",\"codes\":\"[\\\"杜集区\\\"]\",\"dataId\":\"\",\"id\":\"942\",\"name\":\"杜集区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":943,\"values\":{\"cityId\":\"103\",\"codes\":\"[\\\"相山区\\\"]\",\"dataId\":\"\",\"id\":\"943\",\"name\":\"相山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":944,\"values\":{\"cityId\":\"103\",\"codes\":\"[\\\"烈山区\\\"]\",\"dataId\":\"\",\"id\":\"944\",\"name\":\"烈山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":945,\"values\":{\"cityId\":\"103\",\"codes\":\"[\\\"濉溪县\\\"]\",\"dataId\":\"\",\"id\":\"945\",\"name\":\"濉溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":946,\"values\":{\"cityId\":\"104\",\"codes\":\"[\\\"铜官山区\\\"]\",\"dataId\":\"\",\"id\":\"946\",\"name\":\"铜官山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":947,\"values\":{\"cityId\":\"104\",\"codes\":\"[\\\"狮子山区\\\"]\",\"dataId\":\"\",\"id\":\"947\",\"name\":\"狮子山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":948,\"values\":{\"cityId\":\"104\",\"codes\":\"[\\\"铜陵县\\\"]\",\"dataId\":\"\",\"id\":\"948\",\"name\":\"铜陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":949,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"迎江区\\\"]\",\"dataId\":\"\",\"id\":\"949\",\"name\":\"迎江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":950,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"大观区\\\"]\",\"dataId\":\"\",\"id\":\"950\",\"name\":\"大观区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":951,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"怀宁县\\\"]\",\"dataId\":\"\",\"id\":\"951\",\"name\":\"怀宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":952,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"枞阳县\\\"]\",\"dataId\":\"\",\"id\":\"952\",\"name\":\"枞阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":953,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"潜山县\\\"]\",\"dataId\":\"\",\"id\":\"953\",\"name\":\"潜山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":954,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"太湖县\\\"]\",\"dataId\":\"\",\"id\":\"954\",\"name\":\"太湖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":955,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"宿松县\\\"]\",\"dataId\":\"\",\"id\":\"955\",\"name\":\"宿松县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":956,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"望江县\\\"]\",\"dataId\":\"\",\"id\":\"956\",\"name\":\"望江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":957,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"岳西县\\\"]\",\"dataId\":\"\",\"id\":\"957\",\"name\":\"岳西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":958,\"values\":{\"cityId\":\"105\",\"codes\":\"[\\\"桐城市\\\"]\",\"dataId\":\"\",\"id\":\"958\",\"name\":\"桐城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":959,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"屯溪区\\\"]\",\"dataId\":\"\",\"id\":\"959\",\"name\":\"屯溪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":960,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"黄山区\\\"]\",\"dataId\":\"\",\"id\":\"960\",\"name\":\"黄山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":961,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"徽州区\\\"]\",\"dataId\":\"\",\"id\":\"961\",\"name\":\"徽州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":962,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"歙县\\\"]\",\"dataId\":\"\",\"id\":\"962\",\"name\":\"歙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":963,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"休宁县\\\"]\",\"dataId\":\"\",\"id\":\"963\",\"name\":\"休宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":964,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"黟县\\\"]\",\"dataId\":\"\",\"id\":\"964\",\"name\":\"黟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":965,\"values\":{\"cityId\":\"106\",\"codes\":\"[\\\"祁门县\\\"]\",\"dataId\":\"\",\"id\":\"965\",\"name\":\"祁门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":966,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"琅琊区\\\"]\",\"dataId\":\"\",\"id\":\"966\",\"name\":\"琅琊区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":967,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"南谯区\\\"]\",\"dataId\":\"\",\"id\":\"967\",\"name\":\"南谯区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":968,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"来安县\\\"]\",\"dataId\":\"\",\"id\":\"968\",\"name\":\"来安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":969,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"全椒县\\\"]\",\"dataId\":\"\",\"id\":\"969\",\"name\":\"全椒县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":970,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"定远县\\\"]\",\"dataId\":\"\",\"id\":\"970\",\"name\":\"定远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":971,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"凤阳县\\\"]\",\"dataId\":\"\",\"id\":\"971\",\"name\":\"凤阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":972,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"天长市\\\"]\",\"dataId\":\"\",\"id\":\"972\",\"name\":\"天长市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":973,\"values\":{\"cityId\":\"107\",\"codes\":\"[\\\"明光市\\\"]\",\"dataId\":\"\",\"id\":\"973\",\"name\":\"明光市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":974,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"颍州区\\\"]\",\"dataId\":\"\",\"id\":\"974\",\"name\":\"颍州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":975,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"颍东区\\\"]\",\"dataId\":\"\",\"id\":\"975\",\"name\":\"颍东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":976,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"颍泉区\\\"]\",\"dataId\":\"\",\"id\":\"976\",\"name\":\"颍泉区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":977,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"临泉县\\\"]\",\"dataId\":\"\",\"id\":\"977\",\"name\":\"临泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":978,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"太和县\\\"]\",\"dataId\":\"\",\"id\":\"978\",\"name\":\"太和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":979,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"阜南县\\\"]\",\"dataId\":\"\",\"id\":\"979\",\"name\":\"阜南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":980,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"颍上县\\\"]\",\"dataId\":\"\",\"id\":\"980\",\"name\":\"颍上县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":981,\"values\":{\"cityId\":\"108\",\"codes\":\"[\\\"界首市\\\"]\",\"dataId\":\"\",\"id\":\"981\",\"name\":\"界首市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":982,\"values\":{\"cityId\":\"109\",\"codes\":\"[\\\"埇桥区\\\"]\",\"dataId\":\"\",\"id\":\"982\",\"name\":\"埇桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":983,\"values\":{\"cityId\":\"109\",\"codes\":\"[\\\"砀山县\\\"]\",\"dataId\":\"\",\"id\":\"983\",\"name\":\"砀山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":984,\"values\":{\"cityId\":\"109\",\"codes\":\"[\\\"萧县\\\"]\",\"dataId\":\"\",\"id\":\"984\",\"name\":\"萧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":985,\"values\":{\"cityId\":\"109\",\"codes\":\"[\\\"灵璧县\\\"]\",\"dataId\":\"\",\"id\":\"985\",\"name\":\"灵璧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":986,\"values\":{\"cityId\":\"109\",\"codes\":\"[\\\"泗县\\\"]\",\"dataId\":\"\",\"id\":\"986\",\"name\":\"泗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":987,\"values\":{\"cityId\":\"110\",\"codes\":\"[\\\"居巢区\\\"]\",\"dataId\":\"\",\"id\":\"987\",\"name\":\"居巢区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":988,\"values\":{\"cityId\":\"110\",\"codes\":\"[\\\"庐江县\\\"]\",\"dataId\":\"\",\"id\":\"988\",\"name\":\"庐江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":989,\"values\":{\"cityId\":\"110\",\"codes\":\"[\\\"无为县\\\"]\",\"dataId\":\"\",\"id\":\"989\",\"name\":\"无为县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":990,\"values\":{\"cityId\":\"110\",\"codes\":\"[\\\"含山县\\\"]\",\"dataId\":\"\",\"id\":\"990\",\"name\":\"含山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":991,\"values\":{\"cityId\":\"110\",\"codes\":\"[\\\"和县\\\"]\",\"dataId\":\"\",\"id\":\"991\",\"name\":\"和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":992,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"金安区\\\"]\",\"dataId\":\"\",\"id\":\"992\",\"name\":\"金安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":993,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"裕安区\\\"]\",\"dataId\":\"\",\"id\":\"993\",\"name\":\"裕安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":994,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"寿县\\\"]\",\"dataId\":\"\",\"id\":\"994\",\"name\":\"寿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":995,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"霍邱县\\\"]\",\"dataId\":\"\",\"id\":\"995\",\"name\":\"霍邱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":996,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"舒城县\\\"]\",\"dataId\":\"\",\"id\":\"996\",\"name\":\"舒城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":997,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"金寨县\\\"]\",\"dataId\":\"\",\"id\":\"997\",\"name\":\"金寨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":998,\"values\":{\"cityId\":\"111\",\"codes\":\"[\\\"霍山县\\\"]\",\"dataId\":\"\",\"id\":\"998\",\"name\":\"霍山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":999,\"values\":{\"cityId\":\"112\",\"codes\":\"[\\\"谯城区\\\"]\",\"dataId\":\"\",\"id\":\"999\",\"name\":\"谯城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1000,\"values\":{\"cityId\":\"112\",\"codes\":\"[\\\"涡阳县\\\"]\",\"dataId\":\"\",\"id\":\"1000\",\"name\":\"涡阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1001,\"values\":{\"cityId\":\"112\",\"codes\":\"[\\\"蒙城县\\\"]\",\"dataId\":\"\",\"id\":\"1001\",\"name\":\"蒙城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1002,\"values\":{\"cityId\":\"112\",\"codes\":\"[\\\"利辛县\\\"]\",\"dataId\":\"\",\"id\":\"1002\",\"name\":\"利辛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1003,\"values\":{\"cityId\":\"113\",\"codes\":\"[\\\"贵池区\\\"]\",\"dataId\":\"\",\"id\":\"1003\",\"name\":\"贵池区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1004,\"values\":{\"cityId\":\"113\",\"codes\":\"[\\\"东至县\\\"]\",\"dataId\":\"\",\"id\":\"1004\",\"name\":\"东至县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1005,\"values\":{\"cityId\":\"113\",\"codes\":\"[\\\"石台县\\\"]\",\"dataId\":\"\",\"id\":\"1005\",\"name\":\"石台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1006,\"values\":{\"cityId\":\"113\",\"codes\":\"[\\\"青阳县\\\"]\",\"dataId\":\"\",\"id\":\"1006\",\"name\":\"青阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1007,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"宣州区\\\"]\",\"dataId\":\"\",\"id\":\"1007\",\"name\":\"宣州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1008,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"郎溪县\\\"]\",\"dataId\":\"\",\"id\":\"1008\",\"name\":\"郎溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1009,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"广德县\\\"]\",\"dataId\":\"\",\"id\":\"1009\",\"name\":\"广德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1010,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"泾县\\\"]\",\"dataId\":\"\",\"id\":\"1010\",\"name\":\"泾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1011,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"绩溪县\\\"]\",\"dataId\":\"\",\"id\":\"1011\",\"name\":\"绩溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1012,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"旌德县\\\"]\",\"dataId\":\"\",\"id\":\"1012\",\"name\":\"旌德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1013,\"values\":{\"cityId\":\"114\",\"codes\":\"[\\\"宁国市\\\"]\",\"dataId\":\"\",\"id\":\"1013\",\"name\":\"宁国市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1014,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"台江区\\\"]\",\"dataId\":\"\",\"id\":\"1014\",\"name\":\"台江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1015,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"仓山区\\\"]\",\"dataId\":\"\",\"id\":\"1015\",\"name\":\"仓山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1016,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"马尾区\\\"]\",\"dataId\":\"\",\"id\":\"1016\",\"name\":\"马尾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1017,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"晋安区\\\"]\",\"dataId\":\"\",\"id\":\"1017\",\"name\":\"晋安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1018,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"闽侯县\\\"]\",\"dataId\":\"\",\"id\":\"1018\",\"name\":\"闽侯县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1019,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"连江县\\\"]\",\"dataId\":\"\",\"id\":\"1019\",\"name\":\"连江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1020,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"罗源县\\\"]\",\"dataId\":\"\",\"id\":\"1020\",\"name\":\"罗源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1021,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"闽清县\\\"]\",\"dataId\":\"\",\"id\":\"1021\",\"name\":\"闽清县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1022,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"永泰县\\\"]\",\"dataId\":\"\",\"id\":\"1022\",\"name\":\"永泰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1023,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"平潭县\\\"]\",\"dataId\":\"\",\"id\":\"1023\",\"name\":\"平潭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1024,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"福清市\\\"]\",\"dataId\":\"\",\"id\":\"1024\",\"name\":\"福清市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1025,\"values\":{\"cityId\":\"115\",\"codes\":\"[\\\"长乐市\\\"]\",\"dataId\":\"\",\"id\":\"1025\",\"name\":\"长乐市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1026,\"values\":{\"cityId\":\"116\",\"codes\":\"[\\\"思明区\\\"]\",\"dataId\":\"\",\"id\":\"1026\",\"name\":\"思明区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1027,\"values\":{\"cityId\":\"116\",\"codes\":\"[\\\"海沧区\\\"]\",\"dataId\":\"\",\"id\":\"1027\",\"name\":\"海沧区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1028,\"values\":{\"cityId\":\"116\",\"codes\":\"[\\\"湖里区\\\"]\",\"dataId\":\"\",\"id\":\"1028\",\"name\":\"湖里区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1029,\"values\":{\"cityId\":\"116\",\"codes\":\"[\\\"集美区\\\"]\",\"dataId\":\"\",\"id\":\"1029\",\"name\":\"集美区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1030,\"values\":{\"cityId\":\"116\",\"codes\":\"[\\\"同安区\\\"]\",\"dataId\":\"\",\"id\":\"1030\",\"name\":\"同安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1031,\"values\":{\"cityId\":\"116\",\"codes\":\"[\\\"翔安区\\\"]\",\"dataId\":\"\",\"id\":\"1031\",\"name\":\"翔安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1032,\"values\":{\"cityId\":\"117\",\"codes\":\"[\\\"城厢区\\\"]\",\"dataId\":\"\",\"id\":\"1032\",\"name\":\"城厢区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1033,\"values\":{\"cityId\":\"117\",\"codes\":\"[\\\"涵江区\\\"]\",\"dataId\":\"\",\"id\":\"1033\",\"name\":\"涵江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1034,\"values\":{\"cityId\":\"117\",\"codes\":\"[\\\"荔城区\\\"]\",\"dataId\":\"\",\"id\":\"1034\",\"name\":\"荔城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1035,\"values\":{\"cityId\":\"117\",\"codes\":\"[\\\"秀屿区\\\"]\",\"dataId\":\"\",\"id\":\"1035\",\"name\":\"秀屿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1036,\"values\":{\"cityId\":\"117\",\"codes\":\"[\\\"仙游县\\\"]\",\"dataId\":\"\",\"id\":\"1036\",\"name\":\"仙游县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1037,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"梅列区\\\"]\",\"dataId\":\"\",\"id\":\"1037\",\"name\":\"梅列区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1038,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"三元区\\\"]\",\"dataId\":\"\",\"id\":\"1038\",\"name\":\"三元区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1039,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"明溪县\\\"]\",\"dataId\":\"\",\"id\":\"1039\",\"name\":\"明溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1040,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"清流县\\\"]\",\"dataId\":\"\",\"id\":\"1040\",\"name\":\"清流县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1041,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"宁化县\\\"]\",\"dataId\":\"\",\"id\":\"1041\",\"name\":\"宁化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1042,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"大田县\\\"]\",\"dataId\":\"\",\"id\":\"1042\",\"name\":\"大田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1043,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"尤溪县\\\"]\",\"dataId\":\"\",\"id\":\"1043\",\"name\":\"尤溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1044,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"沙县\\\"]\",\"dataId\":\"\",\"id\":\"1044\",\"name\":\"沙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1045,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"将乐县\\\"]\",\"dataId\":\"\",\"id\":\"1045\",\"name\":\"将乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1046,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"泰宁县\\\"]\",\"dataId\":\"\",\"id\":\"1046\",\"name\":\"泰宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1047,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"建宁县\\\"]\",\"dataId\":\"\",\"id\":\"1047\",\"name\":\"建宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1048,\"values\":{\"cityId\":\"118\",\"codes\":\"[\\\"永安市\\\"]\",\"dataId\":\"\",\"id\":\"1048\",\"name\":\"永安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1049,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"鲤城区\\\"]\",\"dataId\":\"\",\"id\":\"1049\",\"name\":\"鲤城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1050,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"丰泽区\\\"]\",\"dataId\":\"\",\"id\":\"1050\",\"name\":\"丰泽区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1051,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"洛江区\\\"]\",\"dataId\":\"\",\"id\":\"1051\",\"name\":\"洛江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1052,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"泉港区\\\"]\",\"dataId\":\"\",\"id\":\"1052\",\"name\":\"泉港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1053,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"惠安县\\\"]\",\"dataId\":\"\",\"id\":\"1053\",\"name\":\"惠安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1054,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"安溪县\\\"]\",\"dataId\":\"\",\"id\":\"1054\",\"name\":\"安溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1055,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"永春县\\\"]\",\"dataId\":\"\",\"id\":\"1055\",\"name\":\"永春县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1056,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"德化县\\\"]\",\"dataId\":\"\",\"id\":\"1056\",\"name\":\"德化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1057,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"金门县\\\"]\",\"dataId\":\"\",\"id\":\"1057\",\"name\":\"金门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1058,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"石狮市\\\"]\",\"dataId\":\"\",\"id\":\"1058\",\"name\":\"石狮市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1059,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"晋江市\\\"]\",\"dataId\":\"\",\"id\":\"1059\",\"name\":\"晋江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1060,\"values\":{\"cityId\":\"119\",\"codes\":\"[\\\"南安市\\\"]\",\"dataId\":\"\",\"id\":\"1060\",\"name\":\"南安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1061,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"芗城区\\\"]\",\"dataId\":\"\",\"id\":\"1061\",\"name\":\"芗城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1062,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"龙文区\\\"]\",\"dataId\":\"\",\"id\":\"1062\",\"name\":\"龙文区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1063,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"云霄县\\\"]\",\"dataId\":\"\",\"id\":\"1063\",\"name\":\"云霄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1064,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"漳浦县\\\"]\",\"dataId\":\"\",\"id\":\"1064\",\"name\":\"漳浦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1065,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"诏安县\\\"]\",\"dataId\":\"\",\"id\":\"1065\",\"name\":\"诏安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1066,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"长泰县\\\"]\",\"dataId\":\"\",\"id\":\"1066\",\"name\":\"长泰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1067,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"东山县\\\"]\",\"dataId\":\"\",\"id\":\"1067\",\"name\":\"东山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1068,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"南靖县\\\"]\",\"dataId\":\"\",\"id\":\"1068\",\"name\":\"南靖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1069,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"平和县\\\"]\",\"dataId\":\"\",\"id\":\"1069\",\"name\":\"平和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1070,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"华安县\\\"]\",\"dataId\":\"\",\"id\":\"1070\",\"name\":\"华安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1071,\"values\":{\"cityId\":\"120\",\"codes\":\"[\\\"龙海市\\\"]\",\"dataId\":\"\",\"id\":\"1071\",\"name\":\"龙海市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1072,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"延平区\\\"]\",\"dataId\":\"\",\"id\":\"1072\",\"name\":\"延平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1073,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"顺昌县\\\"]\",\"dataId\":\"\",\"id\":\"1073\",\"name\":\"顺昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1074,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"浦城县\\\"]\",\"dataId\":\"\",\"id\":\"1074\",\"name\":\"浦城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1075,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"光泽县\\\"]\",\"dataId\":\"\",\"id\":\"1075\",\"name\":\"光泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1076,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"松溪县\\\"]\",\"dataId\":\"\",\"id\":\"1076\",\"name\":\"松溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1077,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"政和县\\\"]\",\"dataId\":\"\",\"id\":\"1077\",\"name\":\"政和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1078,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"邵武市\\\"]\",\"dataId\":\"\",\"id\":\"1078\",\"name\":\"邵武市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1079,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"武夷山市\\\"]\",\"dataId\":\"\",\"id\":\"1079\",\"name\":\"武夷山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1080,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"建瓯市\\\"]\",\"dataId\":\"\",\"id\":\"1080\",\"name\":\"建瓯市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1081,\"values\":{\"cityId\":\"121\",\"codes\":\"[\\\"建阳市\\\"]\",\"dataId\":\"\",\"id\":\"1081\",\"name\":\"建阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1082,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"新罗区\\\"]\",\"dataId\":\"\",\"id\":\"1082\",\"name\":\"新罗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1083,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"长汀县\\\"]\",\"dataId\":\"\",\"id\":\"1083\",\"name\":\"长汀县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1084,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"永定县\\\"]\",\"dataId\":\"\",\"id\":\"1084\",\"name\":\"永定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1085,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"上杭县\\\"]\",\"dataId\":\"\",\"id\":\"1085\",\"name\":\"上杭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1086,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"武平县\\\"]\",\"dataId\":\"\",\"id\":\"1086\",\"name\":\"武平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1087,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"连城县\\\"]\",\"dataId\":\"\",\"id\":\"1087\",\"name\":\"连城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1088,\"values\":{\"cityId\":\"122\",\"codes\":\"[\\\"漳平市\\\"]\",\"dataId\":\"\",\"id\":\"1088\",\"name\":\"漳平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1089,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"蕉城区\\\"]\",\"dataId\":\"\",\"id\":\"1089\",\"name\":\"蕉城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1090,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"霞浦县\\\"]\",\"dataId\":\"\",\"id\":\"1090\",\"name\":\"霞浦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1091,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"古田县\\\"]\",\"dataId\":\"\",\"id\":\"1091\",\"name\":\"古田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1092,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"屏南县\\\"]\",\"dataId\":\"\",\"id\":\"1092\",\"name\":\"屏南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1093,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"寿宁县\\\"]\",\"dataId\":\"\",\"id\":\"1093\",\"name\":\"寿宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1094,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"周宁县\\\"]\",\"dataId\":\"\",\"id\":\"1094\",\"name\":\"周宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1095,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"柘荣县\\\"]\",\"dataId\":\"\",\"id\":\"1095\",\"name\":\"柘荣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1096,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"福安市\\\"]\",\"dataId\":\"\",\"id\":\"1096\",\"name\":\"福安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1097,\"values\":{\"cityId\":\"123\",\"codes\":\"[\\\"福鼎市\\\"]\",\"dataId\":\"\",\"id\":\"1097\",\"name\":\"福鼎市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1098,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"东湖区\\\"]\",\"dataId\":\"\",\"id\":\"1098\",\"name\":\"东湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1099,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"青云谱区\\\"]\",\"dataId\":\"\",\"id\":\"1099\",\"name\":\"青云谱区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1100,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"湾里区\\\"]\",\"dataId\":\"\",\"id\":\"1100\",\"name\":\"湾里区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1101,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"青山湖区\\\"]\",\"dataId\":\"\",\"id\":\"1101\",\"name\":\"青山湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1102,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"南昌县\\\"]\",\"dataId\":\"\",\"id\":\"1102\",\"name\":\"南昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1103,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"新建县\\\"]\",\"dataId\":\"\",\"id\":\"1103\",\"name\":\"新建县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1104,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"安义县\\\"]\",\"dataId\":\"\",\"id\":\"1104\",\"name\":\"安义县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1105,\"values\":{\"cityId\":\"124\",\"codes\":\"[\\\"进贤县\\\"]\",\"dataId\":\"\",\"id\":\"1105\",\"name\":\"进贤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1106,\"values\":{\"cityId\":\"125\",\"codes\":\"[\\\"昌江区\\\"]\",\"dataId\":\"\",\"id\":\"1106\",\"name\":\"昌江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1107,\"values\":{\"cityId\":\"125\",\"codes\":\"[\\\"珠山区\\\"]\",\"dataId\":\"\",\"id\":\"1107\",\"name\":\"珠山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1108,\"values\":{\"cityId\":\"125\",\"codes\":\"[\\\"浮梁县\\\"]\",\"dataId\":\"\",\"id\":\"1108\",\"name\":\"浮梁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1109,\"values\":{\"cityId\":\"125\",\"codes\":\"[\\\"乐平市\\\"]\",\"dataId\":\"\",\"id\":\"1109\",\"name\":\"乐平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1110,\"values\":{\"cityId\":\"126\",\"codes\":\"[\\\"安源区\\\"]\",\"dataId\":\"\",\"id\":\"1110\",\"name\":\"安源区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1111,\"values\":{\"cityId\":\"126\",\"codes\":\"[\\\"湘东区\\\"]\",\"dataId\":\"\",\"id\":\"1111\",\"name\":\"湘东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1112,\"values\":{\"cityId\":\"126\",\"codes\":\"[\\\"莲花县\\\"]\",\"dataId\":\"\",\"id\":\"1112\",\"name\":\"莲花县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1113,\"values\":{\"cityId\":\"126\",\"codes\":\"[\\\"上栗县\\\"]\",\"dataId\":\"\",\"id\":\"1113\",\"name\":\"上栗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1114,\"values\":{\"cityId\":\"126\",\"codes\":\"[\\\"芦溪县\\\"]\",\"dataId\":\"\",\"id\":\"1114\",\"name\":\"芦溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1115,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"庐山区\\\"]\",\"dataId\":\"\",\"id\":\"1115\",\"name\":\"庐山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1116,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"浔阳区\\\"]\",\"dataId\":\"\",\"id\":\"1116\",\"name\":\"浔阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1117,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"九江县\\\"]\",\"dataId\":\"\",\"id\":\"1117\",\"name\":\"九江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1118,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"武宁县\\\"]\",\"dataId\":\"\",\"id\":\"1118\",\"name\":\"武宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1119,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"修水县\\\"]\",\"dataId\":\"\",\"id\":\"1119\",\"name\":\"修水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1120,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"永修县\\\"]\",\"dataId\":\"\",\"id\":\"1120\",\"name\":\"永修县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1121,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"德安县\\\"]\",\"dataId\":\"\",\"id\":\"1121\",\"name\":\"德安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1122,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"星子县\\\"]\",\"dataId\":\"\",\"id\":\"1122\",\"name\":\"星子县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1123,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"都昌县\\\"]\",\"dataId\":\"\",\"id\":\"1123\",\"name\":\"都昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1124,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"湖口县\\\"]\",\"dataId\":\"\",\"id\":\"1124\",\"name\":\"湖口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1125,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"彭泽县\\\"]\",\"dataId\":\"\",\"id\":\"1125\",\"name\":\"彭泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1126,\"values\":{\"cityId\":\"127\",\"codes\":\"[\\\"瑞昌市\\\"]\",\"dataId\":\"\",\"id\":\"1126\",\"name\":\"瑞昌市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1127,\"values\":{\"cityId\":\"128\",\"codes\":\"[\\\"渝水区\\\"]\",\"dataId\":\"\",\"id\":\"1127\",\"name\":\"渝水区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1128,\"values\":{\"cityId\":\"128\",\"codes\":\"[\\\"分宜县\\\"]\",\"dataId\":\"\",\"id\":\"1128\",\"name\":\"分宜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1129,\"values\":{\"cityId\":\"129\",\"codes\":\"[\\\"月湖区\\\"]\",\"dataId\":\"\",\"id\":\"1129\",\"name\":\"月湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1130,\"values\":{\"cityId\":\"129\",\"codes\":\"[\\\"余江县\\\"]\",\"dataId\":\"\",\"id\":\"1130\",\"name\":\"余江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1131,\"values\":{\"cityId\":\"129\",\"codes\":\"[\\\"贵溪市\\\"]\",\"dataId\":\"\",\"id\":\"1131\",\"name\":\"贵溪市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1132,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"章贡区\\\"]\",\"dataId\":\"\",\"id\":\"1132\",\"name\":\"章贡区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1133,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"赣县\\\"]\",\"dataId\":\"\",\"id\":\"1133\",\"name\":\"赣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1134,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"信丰县\\\"]\",\"dataId\":\"\",\"id\":\"1134\",\"name\":\"信丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1135,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"大余县\\\"]\",\"dataId\":\"\",\"id\":\"1135\",\"name\":\"大余县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1136,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"上犹县\\\"]\",\"dataId\":\"\",\"id\":\"1136\",\"name\":\"上犹县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1137,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"崇义县\\\"]\",\"dataId\":\"\",\"id\":\"1137\",\"name\":\"崇义县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1138,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"安远县\\\"]\",\"dataId\":\"\",\"id\":\"1138\",\"name\":\"安远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1139,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"龙南县\\\"]\",\"dataId\":\"\",\"id\":\"1139\",\"name\":\"龙南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1140,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"定南县\\\"]\",\"dataId\":\"\",\"id\":\"1140\",\"name\":\"定南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1141,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"全南县\\\"]\",\"dataId\":\"\",\"id\":\"1141\",\"name\":\"全南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1142,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"宁都县\\\"]\",\"dataId\":\"\",\"id\":\"1142\",\"name\":\"宁都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1143,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"于都县\\\"]\",\"dataId\":\"\",\"id\":\"1143\",\"name\":\"于都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1144,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"兴国县\\\"]\",\"dataId\":\"\",\"id\":\"1144\",\"name\":\"兴国县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1145,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"会昌县\\\"]\",\"dataId\":\"\",\"id\":\"1145\",\"name\":\"会昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1146,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"寻乌县\\\"]\",\"dataId\":\"\",\"id\":\"1146\",\"name\":\"寻乌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1147,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"石城县\\\"]\",\"dataId\":\"\",\"id\":\"1147\",\"name\":\"石城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1148,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"瑞金市\\\"]\",\"dataId\":\"\",\"id\":\"1148\",\"name\":\"瑞金市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1149,\"values\":{\"cityId\":\"130\",\"codes\":\"[\\\"南康市\\\"]\",\"dataId\":\"\",\"id\":\"1149\",\"name\":\"南康市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1150,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"吉州区\\\"]\",\"dataId\":\"\",\"id\":\"1150\",\"name\":\"吉州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1151,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"青原区\\\"]\",\"dataId\":\"\",\"id\":\"1151\",\"name\":\"青原区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1152,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"吉安县\\\"]\",\"dataId\":\"\",\"id\":\"1152\",\"name\":\"吉安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1153,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"吉水县\\\"]\",\"dataId\":\"\",\"id\":\"1153\",\"name\":\"吉水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1154,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"峡江县\\\"]\",\"dataId\":\"\",\"id\":\"1154\",\"name\":\"峡江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1155,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"新干县\\\"]\",\"dataId\":\"\",\"id\":\"1155\",\"name\":\"新干县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1156,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"永丰县\\\"]\",\"dataId\":\"\",\"id\":\"1156\",\"name\":\"永丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1157,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"泰和县\\\"]\",\"dataId\":\"\",\"id\":\"1157\",\"name\":\"泰和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1158,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"遂川县\\\"]\",\"dataId\":\"\",\"id\":\"1158\",\"name\":\"遂川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1159,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"万安县\\\"]\",\"dataId\":\"\",\"id\":\"1159\",\"name\":\"万安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1160,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"安福县\\\"]\",\"dataId\":\"\",\"id\":\"1160\",\"name\":\"安福县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1161,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"永新县\\\"]\",\"dataId\":\"\",\"id\":\"1161\",\"name\":\"永新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1162,\"values\":{\"cityId\":\"131\",\"codes\":\"[\\\"井冈山市\\\"]\",\"dataId\":\"\",\"id\":\"1162\",\"name\":\"井冈山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1163,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"袁州区\\\"]\",\"dataId\":\"\",\"id\":\"1163\",\"name\":\"袁州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1164,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"奉新县\\\"]\",\"dataId\":\"\",\"id\":\"1164\",\"name\":\"奉新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1165,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"万载县\\\"]\",\"dataId\":\"\",\"id\":\"1165\",\"name\":\"万载县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1166,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"上高县\\\"]\",\"dataId\":\"\",\"id\":\"1166\",\"name\":\"上高县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1167,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"宜丰县\\\"]\",\"dataId\":\"\",\"id\":\"1167\",\"name\":\"宜丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1168,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"靖安县\\\"]\",\"dataId\":\"\",\"id\":\"1168\",\"name\":\"靖安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1169,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"铜鼓县\\\"]\",\"dataId\":\"\",\"id\":\"1169\",\"name\":\"铜鼓县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1170,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"丰城市\\\"]\",\"dataId\":\"\",\"id\":\"1170\",\"name\":\"丰城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1171,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"樟树市\\\"]\",\"dataId\":\"\",\"id\":\"1171\",\"name\":\"樟树市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1172,\"values\":{\"cityId\":\"132\",\"codes\":\"[\\\"高安市\\\"]\",\"dataId\":\"\",\"id\":\"1172\",\"name\":\"高安市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1173,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"临川区\\\"]\",\"dataId\":\"\",\"id\":\"1173\",\"name\":\"临川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1174,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"南城县\\\"]\",\"dataId\":\"\",\"id\":\"1174\",\"name\":\"南城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1175,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"黎川县\\\"]\",\"dataId\":\"\",\"id\":\"1175\",\"name\":\"黎川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1176,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"南丰县\\\"]\",\"dataId\":\"\",\"id\":\"1176\",\"name\":\"南丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1177,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"崇仁县\\\"]\",\"dataId\":\"\",\"id\":\"1177\",\"name\":\"崇仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1178,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"乐安县\\\"]\",\"dataId\":\"\",\"id\":\"1178\",\"name\":\"乐安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1179,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"宜黄县\\\"]\",\"dataId\":\"\",\"id\":\"1179\",\"name\":\"宜黄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1180,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"金溪县\\\"]\",\"dataId\":\"\",\"id\":\"1180\",\"name\":\"金溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1181,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"资溪县\\\"]\",\"dataId\":\"\",\"id\":\"1181\",\"name\":\"资溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1182,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"东乡县\\\"]\",\"dataId\":\"\",\"id\":\"1182\",\"name\":\"东乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1183,\"values\":{\"cityId\":\"133\",\"codes\":\"[\\\"广昌县\\\"]\",\"dataId\":\"\",\"id\":\"1183\",\"name\":\"广昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1184,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"信州区\\\"]\",\"dataId\":\"\",\"id\":\"1184\",\"name\":\"信州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1185,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"上饶县\\\"]\",\"dataId\":\"\",\"id\":\"1185\",\"name\":\"上饶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1186,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"广丰县\\\"]\",\"dataId\":\"\",\"id\":\"1186\",\"name\":\"广丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1187,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"玉山县\\\"]\",\"dataId\":\"\",\"id\":\"1187\",\"name\":\"玉山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1188,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"铅山县\\\"]\",\"dataId\":\"\",\"id\":\"1188\",\"name\":\"铅山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1189,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"横峰县\\\"]\",\"dataId\":\"\",\"id\":\"1189\",\"name\":\"横峰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1190,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"弋阳县\\\"]\",\"dataId\":\"\",\"id\":\"1190\",\"name\":\"弋阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1191,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"余干县\\\"]\",\"dataId\":\"\",\"id\":\"1191\",\"name\":\"余干县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1192,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"鄱阳县\\\"]\",\"dataId\":\"\",\"id\":\"1192\",\"name\":\"鄱阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1193,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"万年县\\\"]\",\"dataId\":\"\",\"id\":\"1193\",\"name\":\"万年县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1194,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"婺源县\\\"]\",\"dataId\":\"\",\"id\":\"1194\",\"name\":\"婺源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1195,\"values\":{\"cityId\":\"134\",\"codes\":\"[\\\"德兴市\\\"]\",\"dataId\":\"\",\"id\":\"1195\",\"name\":\"德兴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1196,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"历下区\\\"]\",\"dataId\":\"\",\"id\":\"1196\",\"name\":\"历下区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1197,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"市中区\\\"]\",\"dataId\":\"\",\"id\":\"1197\",\"name\":\"市中区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1198,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"槐荫区\\\"]\",\"dataId\":\"\",\"id\":\"1198\",\"name\":\"槐荫区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1199,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"天桥区\\\"]\",\"dataId\":\"\",\"id\":\"1199\",\"name\":\"天桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1200,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"历城区\\\"]\",\"dataId\":\"\",\"id\":\"1200\",\"name\":\"历城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1201,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"长清区\\\"]\",\"dataId\":\"\",\"id\":\"1201\",\"name\":\"长清区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1202,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"平阴县\\\"]\",\"dataId\":\"\",\"id\":\"1202\",\"name\":\"平阴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1203,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"济阳县\\\"]\",\"dataId\":\"\",\"id\":\"1203\",\"name\":\"济阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1204,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"商河县\\\"]\",\"dataId\":\"\",\"id\":\"1204\",\"name\":\"商河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1205,\"values\":{\"cityId\":\"135\",\"codes\":\"[\\\"章丘市\\\"]\",\"dataId\":\"\",\"id\":\"1205\",\"name\":\"章丘市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1206,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"市南区\\\"]\",\"dataId\":\"\",\"id\":\"1206\",\"name\":\"市南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1207,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"市北区\\\"]\",\"dataId\":\"\",\"id\":\"1207\",\"name\":\"市北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1208,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"四方区\\\"]\",\"dataId\":\"\",\"id\":\"1208\",\"name\":\"四方区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1209,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"黄岛区\\\"]\",\"dataId\":\"\",\"id\":\"1209\",\"name\":\"黄岛区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1210,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"崂山区\\\"]\",\"dataId\":\"\",\"id\":\"1210\",\"name\":\"崂山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1211,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"李沧区\\\"]\",\"dataId\":\"\",\"id\":\"1211\",\"name\":\"李沧区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1212,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"城阳区\\\"]\",\"dataId\":\"\",\"id\":\"1212\",\"name\":\"城阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1213,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"胶州市\\\"]\",\"dataId\":\"\",\"id\":\"1213\",\"name\":\"胶州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1214,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"即墨市\\\"]\",\"dataId\":\"\",\"id\":\"1214\",\"name\":\"即墨市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1215,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"平度市\\\"]\",\"dataId\":\"\",\"id\":\"1215\",\"name\":\"平度市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1216,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"胶南市\\\"]\",\"dataId\":\"\",\"id\":\"1216\",\"name\":\"胶南市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1217,\"values\":{\"cityId\":\"136\",\"codes\":\"[\\\"莱西市\\\"]\",\"dataId\":\"\",\"id\":\"1217\",\"name\":\"莱西市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1218,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"淄川区\\\"]\",\"dataId\":\"\",\"id\":\"1218\",\"name\":\"淄川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1219,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"张店区\\\"]\",\"dataId\":\"\",\"id\":\"1219\",\"name\":\"张店区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1220,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"博山区\\\"]\",\"dataId\":\"\",\"id\":\"1220\",\"name\":\"博山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1221,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"临淄区\\\"]\",\"dataId\":\"\",\"id\":\"1221\",\"name\":\"临淄区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1222,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"周村区\\\"]\",\"dataId\":\"\",\"id\":\"1222\",\"name\":\"周村区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1223,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"桓台县\\\"]\",\"dataId\":\"\",\"id\":\"1223\",\"name\":\"桓台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1224,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"高青县\\\"]\",\"dataId\":\"\",\"id\":\"1224\",\"name\":\"高青县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1225,\"values\":{\"cityId\":\"137\",\"codes\":\"[\\\"沂源县\\\"]\",\"dataId\":\"\",\"id\":\"1225\",\"name\":\"沂源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1226,\"values\":{\"cityId\":\"138\",\"codes\":\"[\\\"薛城区\\\"]\",\"dataId\":\"\",\"id\":\"1226\",\"name\":\"薛城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1227,\"values\":{\"cityId\":\"138\",\"codes\":\"[\\\"峄城区\\\"]\",\"dataId\":\"\",\"id\":\"1227\",\"name\":\"峄城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1228,\"values\":{\"cityId\":\"138\",\"codes\":\"[\\\"台儿庄区\\\"]\",\"dataId\":\"\",\"id\":\"1228\",\"name\":\"台儿庄区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1229,\"values\":{\"cityId\":\"138\",\"codes\":\"[\\\"山亭区\\\"]\",\"dataId\":\"\",\"id\":\"1229\",\"name\":\"山亭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1230,\"values\":{\"cityId\":\"138\",\"codes\":\"[\\\"滕州市\\\"]\",\"dataId\":\"\",\"id\":\"1230\",\"name\":\"滕州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1231,\"values\":{\"cityId\":\"139\",\"codes\":\"[\\\"东营区\\\"]\",\"dataId\":\"\",\"id\":\"1231\",\"name\":\"东营区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1232,\"values\":{\"cityId\":\"139\",\"codes\":\"[\\\"河口区\\\"]\",\"dataId\":\"\",\"id\":\"1232\",\"name\":\"河口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1233,\"values\":{\"cityId\":\"139\",\"codes\":\"[\\\"垦利县\\\"]\",\"dataId\":\"\",\"id\":\"1233\",\"name\":\"垦利县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1234,\"values\":{\"cityId\":\"139\",\"codes\":\"[\\\"利津县\\\"]\",\"dataId\":\"\",\"id\":\"1234\",\"name\":\"利津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1235,\"values\":{\"cityId\":\"139\",\"codes\":\"[\\\"广饶县\\\"]\",\"dataId\":\"\",\"id\":\"1235\",\"name\":\"广饶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1236,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"芝罘区\\\"]\",\"dataId\":\"\",\"id\":\"1236\",\"name\":\"芝罘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1237,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"福山区\\\"]\",\"dataId\":\"\",\"id\":\"1237\",\"name\":\"福山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1238,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"牟平区\\\"]\",\"dataId\":\"\",\"id\":\"1238\",\"name\":\"牟平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1239,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"莱山区\\\"]\",\"dataId\":\"\",\"id\":\"1239\",\"name\":\"莱山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1240,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"长岛县\\\"]\",\"dataId\":\"\",\"id\":\"1240\",\"name\":\"长岛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1241,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"龙口市\\\"]\",\"dataId\":\"\",\"id\":\"1241\",\"name\":\"龙口市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1242,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"莱阳市\\\"]\",\"dataId\":\"\",\"id\":\"1242\",\"name\":\"莱阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1243,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"莱州市\\\"]\",\"dataId\":\"\",\"id\":\"1243\",\"name\":\"莱州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1244,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"蓬莱市\\\"]\",\"dataId\":\"\",\"id\":\"1244\",\"name\":\"蓬莱市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1245,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"招远市\\\"]\",\"dataId\":\"\",\"id\":\"1245\",\"name\":\"招远市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1246,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"栖霞市\\\"]\",\"dataId\":\"\",\"id\":\"1246\",\"name\":\"栖霞市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1247,\"values\":{\"cityId\":\"140\",\"codes\":\"[\\\"海阳市\\\"]\",\"dataId\":\"\",\"id\":\"1247\",\"name\":\"海阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1248,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"潍城区\\\"]\",\"dataId\":\"\",\"id\":\"1248\",\"name\":\"潍城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1249,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"寒亭区\\\"]\",\"dataId\":\"\",\"id\":\"1249\",\"name\":\"寒亭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1250,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"坊子区\\\"]\",\"dataId\":\"\",\"id\":\"1250\",\"name\":\"坊子区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1251,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"奎文区\\\"]\",\"dataId\":\"\",\"id\":\"1251\",\"name\":\"奎文区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1252,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"临朐县\\\"]\",\"dataId\":\"\",\"id\":\"1252\",\"name\":\"临朐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1253,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"昌乐县\\\"]\",\"dataId\":\"\",\"id\":\"1253\",\"name\":\"昌乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1254,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"青州市\\\"]\",\"dataId\":\"\",\"id\":\"1254\",\"name\":\"青州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1255,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"诸城市\\\"]\",\"dataId\":\"\",\"id\":\"1255\",\"name\":\"诸城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1256,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"寿光市\\\"]\",\"dataId\":\"\",\"id\":\"1256\",\"name\":\"寿光市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1257,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"安丘市\\\"]\",\"dataId\":\"\",\"id\":\"1257\",\"name\":\"安丘市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1258,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"高密市\\\"]\",\"dataId\":\"\",\"id\":\"1258\",\"name\":\"高密市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1259,\"values\":{\"cityId\":\"141\",\"codes\":\"[\\\"昌邑市\\\"]\",\"dataId\":\"\",\"id\":\"1259\",\"name\":\"昌邑市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1260,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"任城区\\\"]\",\"dataId\":\"\",\"id\":\"1260\",\"name\":\"任城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1261,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"微山县\\\"]\",\"dataId\":\"\",\"id\":\"1261\",\"name\":\"微山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1262,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"鱼台县\\\"]\",\"dataId\":\"\",\"id\":\"1262\",\"name\":\"鱼台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1263,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"金乡县\\\"]\",\"dataId\":\"\",\"id\":\"1263\",\"name\":\"金乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1264,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"嘉祥县\\\"]\",\"dataId\":\"\",\"id\":\"1264\",\"name\":\"嘉祥县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1265,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"汶上县\\\"]\",\"dataId\":\"\",\"id\":\"1265\",\"name\":\"汶上县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1266,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"泗水县\\\"]\",\"dataId\":\"\",\"id\":\"1266\",\"name\":\"泗水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1267,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"梁山县\\\"]\",\"dataId\":\"\",\"id\":\"1267\",\"name\":\"梁山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1268,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"曲阜市\\\"]\",\"dataId\":\"\",\"id\":\"1268\",\"name\":\"曲阜市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1269,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"兖州市\\\"]\",\"dataId\":\"\",\"id\":\"1269\",\"name\":\"兖州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1270,\"values\":{\"cityId\":\"142\",\"codes\":\"[\\\"邹城市\\\"]\",\"dataId\":\"\",\"id\":\"1270\",\"name\":\"邹城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1271,\"values\":{\"cityId\":\"143\",\"codes\":\"[\\\"泰山区\\\"]\",\"dataId\":\"\",\"id\":\"1271\",\"name\":\"泰山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1272,\"values\":{\"cityId\":\"143\",\"codes\":\"[\\\"岱岳区\\\"]\",\"dataId\":\"\",\"id\":\"1272\",\"name\":\"岱岳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1273,\"values\":{\"cityId\":\"143\",\"codes\":\"[\\\"宁阳县\\\"]\",\"dataId\":\"\",\"id\":\"1273\",\"name\":\"宁阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1274,\"values\":{\"cityId\":\"143\",\"codes\":\"[\\\"东平县\\\"]\",\"dataId\":\"\",\"id\":\"1274\",\"name\":\"东平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1275,\"values\":{\"cityId\":\"143\",\"codes\":\"[\\\"新泰市\\\"]\",\"dataId\":\"\",\"id\":\"1275\",\"name\":\"新泰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1276,\"values\":{\"cityId\":\"143\",\"codes\":\"[\\\"肥城市\\\"]\",\"dataId\":\"\",\"id\":\"1276\",\"name\":\"肥城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1277,\"values\":{\"cityId\":\"144\",\"codes\":\"[\\\"环翠区\\\"]\",\"dataId\":\"\",\"id\":\"1277\",\"name\":\"环翠区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1278,\"values\":{\"cityId\":\"144\",\"codes\":\"[\\\"文登市\\\"]\",\"dataId\":\"\",\"id\":\"1278\",\"name\":\"文登市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1279,\"values\":{\"cityId\":\"144\",\"codes\":\"[\\\"荣成市\\\"]\",\"dataId\":\"\",\"id\":\"1279\",\"name\":\"荣成市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1280,\"values\":{\"cityId\":\"144\",\"codes\":\"[\\\"乳山市\\\"]\",\"dataId\":\"\",\"id\":\"1280\",\"name\":\"乳山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1281,\"values\":{\"cityId\":\"145\",\"codes\":\"[\\\"东港区\\\"]\",\"dataId\":\"\",\"id\":\"1281\",\"name\":\"东港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1282,\"values\":{\"cityId\":\"145\",\"codes\":\"[\\\"岚山区\\\"]\",\"dataId\":\"\",\"id\":\"1282\",\"name\":\"岚山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1283,\"values\":{\"cityId\":\"145\",\"codes\":\"[\\\"五莲县\\\"]\",\"dataId\":\"\",\"id\":\"1283\",\"name\":\"五莲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1284,\"values\":{\"cityId\":\"145\",\"codes\":\"[\\\"莒县\\\"]\",\"dataId\":\"\",\"id\":\"1284\",\"name\":\"莒县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1285,\"values\":{\"cityId\":\"146\",\"codes\":\"[\\\"莱城区\\\"]\",\"dataId\":\"\",\"id\":\"1285\",\"name\":\"莱城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1286,\"values\":{\"cityId\":\"146\",\"codes\":\"[\\\"钢城区\\\"]\",\"dataId\":\"\",\"id\":\"1286\",\"name\":\"钢城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1287,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"兰山区\\\"]\",\"dataId\":\"\",\"id\":\"1287\",\"name\":\"兰山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1288,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"罗庄区\\\"]\",\"dataId\":\"\",\"id\":\"1288\",\"name\":\"罗庄区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1289,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"沂南县\\\"]\",\"dataId\":\"\",\"id\":\"1289\",\"name\":\"沂南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1290,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"郯城县\\\"]\",\"dataId\":\"\",\"id\":\"1290\",\"name\":\"郯城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1291,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"沂水县\\\"]\",\"dataId\":\"\",\"id\":\"1291\",\"name\":\"沂水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1292,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"苍山县\\\"]\",\"dataId\":\"\",\"id\":\"1292\",\"name\":\"苍山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1293,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"费县\\\"]\",\"dataId\":\"\",\"id\":\"1293\",\"name\":\"费县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1294,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"平邑县\\\"]\",\"dataId\":\"\",\"id\":\"1294\",\"name\":\"平邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1295,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"莒南县\\\"]\",\"dataId\":\"\",\"id\":\"1295\",\"name\":\"莒南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1296,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"蒙阴县\\\"]\",\"dataId\":\"\",\"id\":\"1296\",\"name\":\"蒙阴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1297,\"values\":{\"cityId\":\"147\",\"codes\":\"[\\\"临沭县\\\"]\",\"dataId\":\"\",\"id\":\"1297\",\"name\":\"临沭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1298,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"德城区\\\"]\",\"dataId\":\"\",\"id\":\"1298\",\"name\":\"德城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1299,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"陵县\\\"]\",\"dataId\":\"\",\"id\":\"1299\",\"name\":\"陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1300,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"宁津县\\\"]\",\"dataId\":\"\",\"id\":\"1300\",\"name\":\"宁津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1301,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"庆云县\\\"]\",\"dataId\":\"\",\"id\":\"1301\",\"name\":\"庆云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1302,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"临邑县\\\"]\",\"dataId\":\"\",\"id\":\"1302\",\"name\":\"临邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1303,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"齐河县\\\"]\",\"dataId\":\"\",\"id\":\"1303\",\"name\":\"齐河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1304,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"平原县\\\"]\",\"dataId\":\"\",\"id\":\"1304\",\"name\":\"平原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1305,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"夏津县\\\"]\",\"dataId\":\"\",\"id\":\"1305\",\"name\":\"夏津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1306,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"武城县\\\"]\",\"dataId\":\"\",\"id\":\"1306\",\"name\":\"武城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1307,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"乐陵市\\\"]\",\"dataId\":\"\",\"id\":\"1307\",\"name\":\"乐陵市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1308,\"values\":{\"cityId\":\"148\",\"codes\":\"[\\\"禹城市\\\"]\",\"dataId\":\"\",\"id\":\"1308\",\"name\":\"禹城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1309,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"东昌府区\\\"]\",\"dataId\":\"\",\"id\":\"1309\",\"name\":\"东昌府区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1310,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"阳谷县\\\"]\",\"dataId\":\"\",\"id\":\"1310\",\"name\":\"阳谷县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1311,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"莘县\\\"]\",\"dataId\":\"\",\"id\":\"1311\",\"name\":\"莘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1312,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"茌平县\\\"]\",\"dataId\":\"\",\"id\":\"1312\",\"name\":\"茌平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1313,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"东阿县\\\"]\",\"dataId\":\"\",\"id\":\"1313\",\"name\":\"东阿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1314,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"冠县\\\"]\",\"dataId\":\"\",\"id\":\"1314\",\"name\":\"冠县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1315,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"高唐县\\\"]\",\"dataId\":\"\",\"id\":\"1315\",\"name\":\"高唐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1316,\"values\":{\"cityId\":\"149\",\"codes\":\"[\\\"临清市\\\"]\",\"dataId\":\"\",\"id\":\"1316\",\"name\":\"临清市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1317,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"滨城区\\\"]\",\"dataId\":\"\",\"id\":\"1317\",\"name\":\"滨城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1318,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"惠民县\\\"]\",\"dataId\":\"\",\"id\":\"1318\",\"name\":\"惠民县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1319,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"阳信县\\\"]\",\"dataId\":\"\",\"id\":\"1319\",\"name\":\"阳信县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1320,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"无棣县\\\"]\",\"dataId\":\"\",\"id\":\"1320\",\"name\":\"无棣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1321,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"沾化县\\\"]\",\"dataId\":\"\",\"id\":\"1321\",\"name\":\"沾化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1322,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"博兴县\\\"]\",\"dataId\":\"\",\"id\":\"1322\",\"name\":\"博兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1323,\"values\":{\"cityId\":\"150\",\"codes\":\"[\\\"邹平县\\\"]\",\"dataId\":\"\",\"id\":\"1323\",\"name\":\"邹平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1324,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"牡丹区\\\"]\",\"dataId\":\"\",\"id\":\"1324\",\"name\":\"牡丹区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1325,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"曹县\\\"]\",\"dataId\":\"\",\"id\":\"1325\",\"name\":\"曹县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1326,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"单县\\\"]\",\"dataId\":\"\",\"id\":\"1326\",\"name\":\"单县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1327,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"成武县\\\"]\",\"dataId\":\"\",\"id\":\"1327\",\"name\":\"成武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1328,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"巨野县\\\"]\",\"dataId\":\"\",\"id\":\"1328\",\"name\":\"巨野县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1329,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"郓城县\\\"]\",\"dataId\":\"\",\"id\":\"1329\",\"name\":\"郓城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1330,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"鄄城县\\\"]\",\"dataId\":\"\",\"id\":\"1330\",\"name\":\"鄄城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1331,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"定陶县\\\"]\",\"dataId\":\"\",\"id\":\"1331\",\"name\":\"定陶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1332,\"values\":{\"cityId\":\"151\",\"codes\":\"[\\\"东明县\\\"]\",\"dataId\":\"\",\"id\":\"1332\",\"name\":\"东明县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1333,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"中原区\\\"]\",\"dataId\":\"\",\"id\":\"1333\",\"name\":\"中原区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1334,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"二七区\\\"]\",\"dataId\":\"\",\"id\":\"1334\",\"name\":\"二七区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1335,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"管城回族区\\\"]\",\"dataId\":\"\",\"id\":\"1335\",\"name\":\"管城回族区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1336,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"金水区\\\"]\",\"dataId\":\"\",\"id\":\"1336\",\"name\":\"金水区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1337,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"上街区\\\"]\",\"dataId\":\"\",\"id\":\"1337\",\"name\":\"上街区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1338,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"惠济区\\\"]\",\"dataId\":\"\",\"id\":\"1338\",\"name\":\"惠济区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1339,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"中牟县\\\"]\",\"dataId\":\"\",\"id\":\"1339\",\"name\":\"中牟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1340,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"巩义市\\\"]\",\"dataId\":\"\",\"id\":\"1340\",\"name\":\"巩义市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1341,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"荥阳市\\\"]\",\"dataId\":\"\",\"id\":\"1341\",\"name\":\"荥阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1342,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"新密市\\\"]\",\"dataId\":\"\",\"id\":\"1342\",\"name\":\"新密市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1343,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"新郑市\\\"]\",\"dataId\":\"\",\"id\":\"1343\",\"name\":\"新郑市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1344,\"values\":{\"cityId\":\"152\",\"codes\":\"[\\\"登封市\\\"]\",\"dataId\":\"\",\"id\":\"1344\",\"name\":\"登封市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1345,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"龙亭区\\\"]\",\"dataId\":\"\",\"id\":\"1345\",\"name\":\"龙亭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1346,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"顺河回族区\\\"]\",\"dataId\":\"\",\"id\":\"1346\",\"name\":\"顺河回族区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1347,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"杞县\\\"]\",\"dataId\":\"\",\"id\":\"1347\",\"name\":\"杞县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1348,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"通许县\\\"]\",\"dataId\":\"\",\"id\":\"1348\",\"name\":\"通许县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1349,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"尉氏县\\\"]\",\"dataId\":\"\",\"id\":\"1349\",\"name\":\"尉氏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1350,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"开封县\\\"]\",\"dataId\":\"\",\"id\":\"1350\",\"name\":\"开封县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1351,\"values\":{\"cityId\":\"153\",\"codes\":\"[\\\"兰考县\\\"]\",\"dataId\":\"\",\"id\":\"1351\",\"name\":\"兰考县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1352,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"老城区\\\"]\",\"dataId\":\"\",\"id\":\"1352\",\"name\":\"老城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1353,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"西工区\\\"]\",\"dataId\":\"\",\"id\":\"1353\",\"name\":\"西工区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1354,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"廛河回族区\\\"]\",\"dataId\":\"\",\"id\":\"1354\",\"name\":\"廛河回族区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1355,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"涧西区\\\"]\",\"dataId\":\"\",\"id\":\"1355\",\"name\":\"涧西区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1356,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"吉利区\\\"]\",\"dataId\":\"\",\"id\":\"1356\",\"name\":\"吉利区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1357,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"洛龙区\\\"]\",\"dataId\":\"\",\"id\":\"1357\",\"name\":\"洛龙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1358,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"孟津县\\\"]\",\"dataId\":\"\",\"id\":\"1358\",\"name\":\"孟津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1359,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"新安县\\\"]\",\"dataId\":\"\",\"id\":\"1359\",\"name\":\"新安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1360,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"栾川县\\\"]\",\"dataId\":\"\",\"id\":\"1360\",\"name\":\"栾川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1361,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"嵩县\\\"]\",\"dataId\":\"\",\"id\":\"1361\",\"name\":\"嵩县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1362,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"汝阳县\\\"]\",\"dataId\":\"\",\"id\":\"1362\",\"name\":\"汝阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1363,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"宜阳县\\\"]\",\"dataId\":\"\",\"id\":\"1363\",\"name\":\"宜阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1364,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"洛宁县\\\"]\",\"dataId\":\"\",\"id\":\"1364\",\"name\":\"洛宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1365,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"伊川县\\\"]\",\"dataId\":\"\",\"id\":\"1365\",\"name\":\"伊川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1366,\"values\":{\"cityId\":\"154\",\"codes\":\"[\\\"偃师市\\\"]\",\"dataId\":\"\",\"id\":\"1366\",\"name\":\"偃师市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1367,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"卫东区\\\"]\",\"dataId\":\"\",\"id\":\"1367\",\"name\":\"卫东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1368,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"石龙区\\\"]\",\"dataId\":\"\",\"id\":\"1368\",\"name\":\"石龙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1369,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"湛河区\\\"]\",\"dataId\":\"\",\"id\":\"1369\",\"name\":\"湛河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1370,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"宝丰县\\\"]\",\"dataId\":\"\",\"id\":\"1370\",\"name\":\"宝丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1371,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"叶县\\\"]\",\"dataId\":\"\",\"id\":\"1371\",\"name\":\"叶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1372,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"鲁山县\\\"]\",\"dataId\":\"\",\"id\":\"1372\",\"name\":\"鲁山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1373,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"郏县\\\"]\",\"dataId\":\"\",\"id\":\"1373\",\"name\":\"郏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1374,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"舞钢市\\\"]\",\"dataId\":\"\",\"id\":\"1374\",\"name\":\"舞钢市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1375,\"values\":{\"cityId\":\"155\",\"codes\":\"[\\\"汝州市\\\"]\",\"dataId\":\"\",\"id\":\"1375\",\"name\":\"汝州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1376,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"文峰区\\\"]\",\"dataId\":\"\",\"id\":\"1376\",\"name\":\"文峰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1377,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"北关区\\\"]\",\"dataId\":\"\",\"id\":\"1377\",\"name\":\"北关区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1378,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"殷都区\\\"]\",\"dataId\":\"\",\"id\":\"1378\",\"name\":\"殷都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1379,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"龙安区\\\"]\",\"dataId\":\"\",\"id\":\"1379\",\"name\":\"龙安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1380,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"安阳县\\\"]\",\"dataId\":\"\",\"id\":\"1380\",\"name\":\"安阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1381,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"汤阴县\\\"]\",\"dataId\":\"\",\"id\":\"1381\",\"name\":\"汤阴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1382,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"滑县\\\"]\",\"dataId\":\"\",\"id\":\"1382\",\"name\":\"滑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1383,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"内黄县\\\"]\",\"dataId\":\"\",\"id\":\"1383\",\"name\":\"内黄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1384,\"values\":{\"cityId\":\"156\",\"codes\":\"[\\\"林州市\\\"]\",\"dataId\":\"\",\"id\":\"1384\",\"name\":\"林州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1385,\"values\":{\"cityId\":\"157\",\"codes\":\"[\\\"鹤山区\\\"]\",\"dataId\":\"\",\"id\":\"1385\",\"name\":\"鹤山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1386,\"values\":{\"cityId\":\"157\",\"codes\":\"[\\\"山城区\\\"]\",\"dataId\":\"\",\"id\":\"1386\",\"name\":\"山城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1387,\"values\":{\"cityId\":\"157\",\"codes\":\"[\\\"淇滨区\\\"]\",\"dataId\":\"\",\"id\":\"1387\",\"name\":\"淇滨区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1388,\"values\":{\"cityId\":\"157\",\"codes\":\"[\\\"浚县\\\"]\",\"dataId\":\"\",\"id\":\"1388\",\"name\":\"浚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1389,\"values\":{\"cityId\":\"157\",\"codes\":\"[\\\"淇县\\\"]\",\"dataId\":\"\",\"id\":\"1389\",\"name\":\"淇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1390,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"红旗区\\\"]\",\"dataId\":\"\",\"id\":\"1390\",\"name\":\"红旗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1391,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"卫滨区\\\"]\",\"dataId\":\"\",\"id\":\"1391\",\"name\":\"卫滨区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1392,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"凤泉区\\\"]\",\"dataId\":\"\",\"id\":\"1392\",\"name\":\"凤泉区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1393,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"牧野区\\\"]\",\"dataId\":\"\",\"id\":\"1393\",\"name\":\"牧野区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1394,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"新乡县\\\"]\",\"dataId\":\"\",\"id\":\"1394\",\"name\":\"新乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1395,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"获嘉县\\\"]\",\"dataId\":\"\",\"id\":\"1395\",\"name\":\"获嘉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1396,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"原阳县\\\"]\",\"dataId\":\"\",\"id\":\"1396\",\"name\":\"原阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1397,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"延津县\\\"]\",\"dataId\":\"\",\"id\":\"1397\",\"name\":\"延津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1398,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"封丘县\\\"]\",\"dataId\":\"\",\"id\":\"1398\",\"name\":\"封丘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1399,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"长垣县\\\"]\",\"dataId\":\"\",\"id\":\"1399\",\"name\":\"长垣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1400,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"卫辉市\\\"]\",\"dataId\":\"\",\"id\":\"1400\",\"name\":\"卫辉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1401,\"values\":{\"cityId\":\"158\",\"codes\":\"[\\\"辉县市\\\"]\",\"dataId\":\"\",\"id\":\"1401\",\"name\":\"辉县市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1402,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"解放区\\\"]\",\"dataId\":\"\",\"id\":\"1402\",\"name\":\"解放区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1403,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"中站区\\\"]\",\"dataId\":\"\",\"id\":\"1403\",\"name\":\"中站区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1404,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"马村区\\\"]\",\"dataId\":\"\",\"id\":\"1404\",\"name\":\"马村区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1405,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"山阳区\\\"]\",\"dataId\":\"\",\"id\":\"1405\",\"name\":\"山阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1406,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"修武县\\\"]\",\"dataId\":\"\",\"id\":\"1406\",\"name\":\"修武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1407,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"博爱县\\\"]\",\"dataId\":\"\",\"id\":\"1407\",\"name\":\"博爱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1408,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"武陟县\\\"]\",\"dataId\":\"\",\"id\":\"1408\",\"name\":\"武陟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1409,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"温县\\\"]\",\"dataId\":\"\",\"id\":\"1409\",\"name\":\"温县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1410,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"济源市\\\"]\",\"dataId\":\"\",\"id\":\"1410\",\"name\":\"济源市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1411,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"沁阳市\\\"]\",\"dataId\":\"\",\"id\":\"1411\",\"name\":\"沁阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1412,\"values\":{\"cityId\":\"159\",\"codes\":\"[\\\"孟州市\\\"]\",\"dataId\":\"\",\"id\":\"1412\",\"name\":\"孟州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1413,\"values\":{\"cityId\":\"160\",\"codes\":\"[\\\"华龙区\\\"]\",\"dataId\":\"\",\"id\":\"1413\",\"name\":\"华龙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1414,\"values\":{\"cityId\":\"160\",\"codes\":\"[\\\"清丰县\\\"]\",\"dataId\":\"\",\"id\":\"1414\",\"name\":\"清丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1415,\"values\":{\"cityId\":\"160\",\"codes\":\"[\\\"南乐县\\\"]\",\"dataId\":\"\",\"id\":\"1415\",\"name\":\"南乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1416,\"values\":{\"cityId\":\"160\",\"codes\":\"[\\\"范县\\\"]\",\"dataId\":\"\",\"id\":\"1416\",\"name\":\"范县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1417,\"values\":{\"cityId\":\"160\",\"codes\":\"[\\\"台前县\\\"]\",\"dataId\":\"\",\"id\":\"1417\",\"name\":\"台前县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1418,\"values\":{\"cityId\":\"160\",\"codes\":\"[\\\"濮阳县\\\"]\",\"dataId\":\"\",\"id\":\"1418\",\"name\":\"濮阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1419,\"values\":{\"cityId\":\"161\",\"codes\":\"[\\\"魏都区\\\"]\",\"dataId\":\"\",\"id\":\"1419\",\"name\":\"魏都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1420,\"values\":{\"cityId\":\"161\",\"codes\":\"[\\\"许昌县\\\"]\",\"dataId\":\"\",\"id\":\"1420\",\"name\":\"许昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1421,\"values\":{\"cityId\":\"161\",\"codes\":\"[\\\"鄢陵县\\\"]\",\"dataId\":\"\",\"id\":\"1421\",\"name\":\"鄢陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1422,\"values\":{\"cityId\":\"161\",\"codes\":\"[\\\"襄城县\\\"]\",\"dataId\":\"\",\"id\":\"1422\",\"name\":\"襄城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1423,\"values\":{\"cityId\":\"161\",\"codes\":\"[\\\"禹州市\\\"]\",\"dataId\":\"\",\"id\":\"1423\",\"name\":\"禹州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1424,\"values\":{\"cityId\":\"161\",\"codes\":\"[\\\"长葛市\\\"]\",\"dataId\":\"\",\"id\":\"1424\",\"name\":\"长葛市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1425,\"values\":{\"cityId\":\"162\",\"codes\":\"[\\\"源汇区\\\"]\",\"dataId\":\"\",\"id\":\"1425\",\"name\":\"源汇区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1426,\"values\":{\"cityId\":\"162\",\"codes\":\"[\\\"郾城区\\\"]\",\"dataId\":\"\",\"id\":\"1426\",\"name\":\"郾城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1427,\"values\":{\"cityId\":\"162\",\"codes\":\"[\\\"召陵区\\\"]\",\"dataId\":\"\",\"id\":\"1427\",\"name\":\"召陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1428,\"values\":{\"cityId\":\"162\",\"codes\":\"[\\\"舞阳县\\\"]\",\"dataId\":\"\",\"id\":\"1428\",\"name\":\"舞阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1429,\"values\":{\"cityId\":\"162\",\"codes\":\"[\\\"临颍县\\\"]\",\"dataId\":\"\",\"id\":\"1429\",\"name\":\"临颍县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1430,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"市辖区\\\"]\",\"dataId\":\"\",\"id\":\"1430\",\"name\":\"市辖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1431,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"湖滨区\\\"]\",\"dataId\":\"\",\"id\":\"1431\",\"name\":\"湖滨区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1432,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"渑池县\\\"]\",\"dataId\":\"\",\"id\":\"1432\",\"name\":\"渑池县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1433,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"陕县\\\"]\",\"dataId\":\"\",\"id\":\"1433\",\"name\":\"陕县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1434,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"卢氏县\\\"]\",\"dataId\":\"\",\"id\":\"1434\",\"name\":\"卢氏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1435,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"义马市\\\"]\",\"dataId\":\"\",\"id\":\"1435\",\"name\":\"义马市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1436,\"values\":{\"cityId\":\"163\",\"codes\":\"[\\\"灵宝市\\\"]\",\"dataId\":\"\",\"id\":\"1436\",\"name\":\"灵宝市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1437,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"宛城区\\\"]\",\"dataId\":\"\",\"id\":\"1437\",\"name\":\"宛城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1438,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"卧龙区\\\"]\",\"dataId\":\"\",\"id\":\"1438\",\"name\":\"卧龙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1439,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"南召县\\\"]\",\"dataId\":\"\",\"id\":\"1439\",\"name\":\"南召县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1440,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"方城县\\\"]\",\"dataId\":\"\",\"id\":\"1440\",\"name\":\"方城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1441,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"西峡县\\\"]\",\"dataId\":\"\",\"id\":\"1441\",\"name\":\"西峡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1442,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"镇平县\\\"]\",\"dataId\":\"\",\"id\":\"1442\",\"name\":\"镇平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1443,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"内乡县\\\"]\",\"dataId\":\"\",\"id\":\"1443\",\"name\":\"内乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1444,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"淅川县\\\"]\",\"dataId\":\"\",\"id\":\"1444\",\"name\":\"淅川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1445,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"社旗县\\\"]\",\"dataId\":\"\",\"id\":\"1445\",\"name\":\"社旗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1446,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"唐河县\\\"]\",\"dataId\":\"\",\"id\":\"1446\",\"name\":\"唐河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1447,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"新野县\\\"]\",\"dataId\":\"\",\"id\":\"1447\",\"name\":\"新野县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1448,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"桐柏县\\\"]\",\"dataId\":\"\",\"id\":\"1448\",\"name\":\"桐柏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1449,\"values\":{\"cityId\":\"164\",\"codes\":\"[\\\"邓州市\\\"]\",\"dataId\":\"\",\"id\":\"1449\",\"name\":\"邓州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1450,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"梁园区\\\"]\",\"dataId\":\"\",\"id\":\"1450\",\"name\":\"梁园区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1451,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"睢阳区\\\"]\",\"dataId\":\"\",\"id\":\"1451\",\"name\":\"睢阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1452,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"民权县\\\"]\",\"dataId\":\"\",\"id\":\"1452\",\"name\":\"民权县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1453,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"睢县\\\"]\",\"dataId\":\"\",\"id\":\"1453\",\"name\":\"睢县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1454,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"宁陵县\\\"]\",\"dataId\":\"\",\"id\":\"1454\",\"name\":\"宁陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1455,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"柘城县\\\"]\",\"dataId\":\"\",\"id\":\"1455\",\"name\":\"柘城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1456,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"虞城县\\\"]\",\"dataId\":\"\",\"id\":\"1456\",\"name\":\"虞城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1457,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"夏邑县\\\"]\",\"dataId\":\"\",\"id\":\"1457\",\"name\":\"夏邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1458,\"values\":{\"cityId\":\"165\",\"codes\":\"[\\\"永城市\\\"]\",\"dataId\":\"\",\"id\":\"1458\",\"name\":\"永城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1459,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"浉河区\\\"]\",\"dataId\":\"\",\"id\":\"1459\",\"name\":\"浉河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1460,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"平桥区\\\"]\",\"dataId\":\"\",\"id\":\"1460\",\"name\":\"平桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1461,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"罗山县\\\"]\",\"dataId\":\"\",\"id\":\"1461\",\"name\":\"罗山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1462,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"光山县\\\"]\",\"dataId\":\"\",\"id\":\"1462\",\"name\":\"光山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1463,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"新县\\\"]\",\"dataId\":\"\",\"id\":\"1463\",\"name\":\"新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1464,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"商城县\\\"]\",\"dataId\":\"\",\"id\":\"1464\",\"name\":\"商城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1465,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"固始县\\\"]\",\"dataId\":\"\",\"id\":\"1465\",\"name\":\"固始县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1466,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"潢川县\\\"]\",\"dataId\":\"\",\"id\":\"1466\",\"name\":\"潢川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1467,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"淮滨县\\\"]\",\"dataId\":\"\",\"id\":\"1467\",\"name\":\"淮滨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1468,\"values\":{\"cityId\":\"166\",\"codes\":\"[\\\"息县\\\"]\",\"dataId\":\"\",\"id\":\"1468\",\"name\":\"息县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1469,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"川汇区\\\"]\",\"dataId\":\"\",\"id\":\"1469\",\"name\":\"川汇区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1470,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"扶沟县\\\"]\",\"dataId\":\"\",\"id\":\"1470\",\"name\":\"扶沟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1471,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"西华县\\\"]\",\"dataId\":\"\",\"id\":\"1471\",\"name\":\"西华县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1472,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"商水县\\\"]\",\"dataId\":\"\",\"id\":\"1472\",\"name\":\"商水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1473,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"沈丘县\\\"]\",\"dataId\":\"\",\"id\":\"1473\",\"name\":\"沈丘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1474,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"郸城县\\\"]\",\"dataId\":\"\",\"id\":\"1474\",\"name\":\"郸城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1475,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"淮阳县\\\"]\",\"dataId\":\"\",\"id\":\"1475\",\"name\":\"淮阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1476,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"太康县\\\"]\",\"dataId\":\"\",\"id\":\"1476\",\"name\":\"太康县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1477,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"鹿邑县\\\"]\",\"dataId\":\"\",\"id\":\"1477\",\"name\":\"鹿邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1478,\"values\":{\"cityId\":\"167\",\"codes\":\"[\\\"项城市\\\"]\",\"dataId\":\"\",\"id\":\"1478\",\"name\":\"项城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1479,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"驿城区\\\"]\",\"dataId\":\"\",\"id\":\"1479\",\"name\":\"驿城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1480,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"西平县\\\"]\",\"dataId\":\"\",\"id\":\"1480\",\"name\":\"西平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1481,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"上蔡县\\\"]\",\"dataId\":\"\",\"id\":\"1481\",\"name\":\"上蔡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1482,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"平舆县\\\"]\",\"dataId\":\"\",\"id\":\"1482\",\"name\":\"平舆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1483,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"正阳县\\\"]\",\"dataId\":\"\",\"id\":\"1483\",\"name\":\"正阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1484,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"确山县\\\"]\",\"dataId\":\"\",\"id\":\"1484\",\"name\":\"确山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1485,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"泌阳县\\\"]\",\"dataId\":\"\",\"id\":\"1485\",\"name\":\"泌阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1486,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"汝南县\\\"]\",\"dataId\":\"\",\"id\":\"1486\",\"name\":\"汝南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1487,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"遂平县\\\"]\",\"dataId\":\"\",\"id\":\"1487\",\"name\":\"遂平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1488,\"values\":{\"cityId\":\"168\",\"codes\":\"[\\\"新蔡县\\\"]\",\"dataId\":\"\",\"id\":\"1488\",\"name\":\"新蔡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1489,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"江岸区\\\"]\",\"dataId\":\"\",\"id\":\"1489\",\"name\":\"江岸区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1490,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"江汉区\\\"]\",\"dataId\":\"\",\"id\":\"1490\",\"name\":\"江汉区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1491,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"硚口区\\\"]\",\"dataId\":\"\",\"id\":\"1491\",\"name\":\"硚口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1492,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"汉阳区\\\"]\",\"dataId\":\"\",\"id\":\"1492\",\"name\":\"汉阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1493,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"武昌区\\\"]\",\"dataId\":\"\",\"id\":\"1493\",\"name\":\"武昌区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1494,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"洪山区\\\"]\",\"dataId\":\"\",\"id\":\"1494\",\"name\":\"洪山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1495,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"东西湖区\\\"]\",\"dataId\":\"\",\"id\":\"1495\",\"name\":\"东西湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1496,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"汉南区\\\"]\",\"dataId\":\"\",\"id\":\"1496\",\"name\":\"汉南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1497,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"蔡甸区\\\"]\",\"dataId\":\"\",\"id\":\"1497\",\"name\":\"蔡甸区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1498,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"江夏区\\\"]\",\"dataId\":\"\",\"id\":\"1498\",\"name\":\"江夏区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1499,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"黄陂区\\\"]\",\"dataId\":\"\",\"id\":\"1499\",\"name\":\"黄陂区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1500,\"values\":{\"cityId\":\"169\",\"codes\":\"[\\\"新洲区\\\"]\",\"dataId\":\"\",\"id\":\"1500\",\"name\":\"新洲区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1501,\"values\":{\"cityId\":\"170\",\"codes\":\"[\\\"黄石港区\\\"]\",\"dataId\":\"\",\"id\":\"1501\",\"name\":\"黄石港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1502,\"values\":{\"cityId\":\"170\",\"codes\":\"[\\\"西塞山区\\\"]\",\"dataId\":\"\",\"id\":\"1502\",\"name\":\"西塞山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1503,\"values\":{\"cityId\":\"170\",\"codes\":\"[\\\"下陆区\\\"]\",\"dataId\":\"\",\"id\":\"1503\",\"name\":\"下陆区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1504,\"values\":{\"cityId\":\"170\",\"codes\":\"[\\\"铁山区\\\"]\",\"dataId\":\"\",\"id\":\"1504\",\"name\":\"铁山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1505,\"values\":{\"cityId\":\"170\",\"codes\":\"[\\\"阳新县\\\"]\",\"dataId\":\"\",\"id\":\"1505\",\"name\":\"阳新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1506,\"values\":{\"cityId\":\"170\",\"codes\":\"[\\\"大冶市\\\"]\",\"dataId\":\"\",\"id\":\"1506\",\"name\":\"大冶市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1507,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"茅箭区\\\"]\",\"dataId\":\"\",\"id\":\"1507\",\"name\":\"茅箭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1508,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"张湾区\\\"]\",\"dataId\":\"\",\"id\":\"1508\",\"name\":\"张湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1509,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"郧县\\\"]\",\"dataId\":\"\",\"id\":\"1509\",\"name\":\"郧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1510,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"郧西县\\\"]\",\"dataId\":\"\",\"id\":\"1510\",\"name\":\"郧西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1511,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"竹山县\\\"]\",\"dataId\":\"\",\"id\":\"1511\",\"name\":\"竹山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1512,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"竹溪县\\\"]\",\"dataId\":\"\",\"id\":\"1512\",\"name\":\"竹溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1513,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"房县\\\"]\",\"dataId\":\"\",\"id\":\"1513\",\"name\":\"房县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1514,\"values\":{\"cityId\":\"171\",\"codes\":\"[\\\"丹江口市\\\"]\",\"dataId\":\"\",\"id\":\"1514\",\"name\":\"丹江口市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1515,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"西陵区\\\"]\",\"dataId\":\"\",\"id\":\"1515\",\"name\":\"西陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1516,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"伍家岗区\\\"]\",\"dataId\":\"\",\"id\":\"1516\",\"name\":\"伍家岗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1517,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"点军区\\\"]\",\"dataId\":\"\",\"id\":\"1517\",\"name\":\"点军区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1518,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"猇亭区\\\"]\",\"dataId\":\"\",\"id\":\"1518\",\"name\":\"猇亭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1519,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"夷陵区\\\"]\",\"dataId\":\"\",\"id\":\"1519\",\"name\":\"夷陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1520,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"远安县\\\"]\",\"dataId\":\"\",\"id\":\"1520\",\"name\":\"远安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1521,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"兴山县\\\"]\",\"dataId\":\"\",\"id\":\"1521\",\"name\":\"兴山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1522,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"秭归县\\\"]\",\"dataId\":\"\",\"id\":\"1522\",\"name\":\"秭归县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1523,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"长阳土家族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1523\",\"name\":\"长阳土家族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1524,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"五峰土家族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1524\",\"name\":\"五峰土家族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1525,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"宜都市\\\"]\",\"dataId\":\"\",\"id\":\"1525\",\"name\":\"宜都市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1526,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"当阳市\\\"]\",\"dataId\":\"\",\"id\":\"1526\",\"name\":\"当阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1527,\"values\":{\"cityId\":\"172\",\"codes\":\"[\\\"枝江市\\\"]\",\"dataId\":\"\",\"id\":\"1527\",\"name\":\"枝江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1528,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"襄城区\\\"]\",\"dataId\":\"\",\"id\":\"1528\",\"name\":\"襄城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1529,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"樊城区\\\"]\",\"dataId\":\"\",\"id\":\"1529\",\"name\":\"樊城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1530,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"襄阳区\\\"]\",\"dataId\":\"\",\"id\":\"1530\",\"name\":\"襄阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1531,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"南漳县\\\"]\",\"dataId\":\"\",\"id\":\"1531\",\"name\":\"南漳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1532,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"谷城县\\\"]\",\"dataId\":\"\",\"id\":\"1532\",\"name\":\"谷城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1533,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"保康县\\\"]\",\"dataId\":\"\",\"id\":\"1533\",\"name\":\"保康县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1534,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"老河口市\\\"]\",\"dataId\":\"\",\"id\":\"1534\",\"name\":\"老河口市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1535,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"枣阳市\\\"]\",\"dataId\":\"\",\"id\":\"1535\",\"name\":\"枣阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1536,\"values\":{\"cityId\":\"173\",\"codes\":\"[\\\"宜城市\\\"]\",\"dataId\":\"\",\"id\":\"1536\",\"name\":\"宜城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1537,\"values\":{\"cityId\":\"174\",\"codes\":\"[\\\"梁子湖区\\\"]\",\"dataId\":\"\",\"id\":\"1537\",\"name\":\"梁子湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1538,\"values\":{\"cityId\":\"174\",\"codes\":\"[\\\"华容区\\\"]\",\"dataId\":\"\",\"id\":\"1538\",\"name\":\"华容区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1539,\"values\":{\"cityId\":\"174\",\"codes\":\"[\\\"鄂城区\\\"]\",\"dataId\":\"\",\"id\":\"1539\",\"name\":\"鄂城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1540,\"values\":{\"cityId\":\"175\",\"codes\":\"[\\\"东宝区\\\"]\",\"dataId\":\"\",\"id\":\"1540\",\"name\":\"东宝区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1541,\"values\":{\"cityId\":\"175\",\"codes\":\"[\\\"掇刀区\\\"]\",\"dataId\":\"\",\"id\":\"1541\",\"name\":\"掇刀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1542,\"values\":{\"cityId\":\"175\",\"codes\":\"[\\\"京山县\\\"]\",\"dataId\":\"\",\"id\":\"1542\",\"name\":\"京山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1543,\"values\":{\"cityId\":\"175\",\"codes\":\"[\\\"沙洋县\\\"]\",\"dataId\":\"\",\"id\":\"1543\",\"name\":\"沙洋县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1544,\"values\":{\"cityId\":\"175\",\"codes\":\"[\\\"钟祥市\\\"]\",\"dataId\":\"\",\"id\":\"1544\",\"name\":\"钟祥市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1545,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"孝南区\\\"]\",\"dataId\":\"\",\"id\":\"1545\",\"name\":\"孝南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1546,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"孝昌县\\\"]\",\"dataId\":\"\",\"id\":\"1546\",\"name\":\"孝昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1547,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"大悟县\\\"]\",\"dataId\":\"\",\"id\":\"1547\",\"name\":\"大悟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1548,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"云梦县\\\"]\",\"dataId\":\"\",\"id\":\"1548\",\"name\":\"云梦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1549,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"应城市\\\"]\",\"dataId\":\"\",\"id\":\"1549\",\"name\":\"应城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1550,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"安陆市\\\"]\",\"dataId\":\"\",\"id\":\"1550\",\"name\":\"安陆市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1551,\"values\":{\"cityId\":\"176\",\"codes\":\"[\\\"汉川市\\\"]\",\"dataId\":\"\",\"id\":\"1551\",\"name\":\"汉川市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1552,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"沙市区\\\"]\",\"dataId\":\"\",\"id\":\"1552\",\"name\":\"沙市区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1553,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"荆州区\\\"]\",\"dataId\":\"\",\"id\":\"1553\",\"name\":\"荆州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1554,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"公安县\\\"]\",\"dataId\":\"\",\"id\":\"1554\",\"name\":\"公安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1555,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"监利县\\\"]\",\"dataId\":\"\",\"id\":\"1555\",\"name\":\"监利县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1556,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"江陵县\\\"]\",\"dataId\":\"\",\"id\":\"1556\",\"name\":\"江陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1557,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"石首市\\\"]\",\"dataId\":\"\",\"id\":\"1557\",\"name\":\"石首市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1558,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"洪湖市\\\"]\",\"dataId\":\"\",\"id\":\"1558\",\"name\":\"洪湖市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1559,\"values\":{\"cityId\":\"177\",\"codes\":\"[\\\"松滋市\\\"]\",\"dataId\":\"\",\"id\":\"1559\",\"name\":\"松滋市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1560,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"黄州区\\\"]\",\"dataId\":\"\",\"id\":\"1560\",\"name\":\"黄州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1561,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"团风县\\\"]\",\"dataId\":\"\",\"id\":\"1561\",\"name\":\"团风县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1562,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"红安县\\\"]\",\"dataId\":\"\",\"id\":\"1562\",\"name\":\"红安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1563,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"罗田县\\\"]\",\"dataId\":\"\",\"id\":\"1563\",\"name\":\"罗田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1564,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"英山县\\\"]\",\"dataId\":\"\",\"id\":\"1564\",\"name\":\"英山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1565,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"浠水县\\\"]\",\"dataId\":\"\",\"id\":\"1565\",\"name\":\"浠水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1566,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"蕲春县\\\"]\",\"dataId\":\"\",\"id\":\"1566\",\"name\":\"蕲春县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1567,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"黄梅县\\\"]\",\"dataId\":\"\",\"id\":\"1567\",\"name\":\"黄梅县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1568,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"麻城市\\\"]\",\"dataId\":\"\",\"id\":\"1568\",\"name\":\"麻城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1569,\"values\":{\"cityId\":\"178\",\"codes\":\"[\\\"武穴市\\\"]\",\"dataId\":\"\",\"id\":\"1569\",\"name\":\"武穴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1570,\"values\":{\"cityId\":\"179\",\"codes\":\"[\\\"咸安区\\\"]\",\"dataId\":\"\",\"id\":\"1570\",\"name\":\"咸安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1571,\"values\":{\"cityId\":\"179\",\"codes\":\"[\\\"嘉鱼县\\\"]\",\"dataId\":\"\",\"id\":\"1571\",\"name\":\"嘉鱼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1572,\"values\":{\"cityId\":\"179\",\"codes\":\"[\\\"通城县\\\"]\",\"dataId\":\"\",\"id\":\"1572\",\"name\":\"通城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1573,\"values\":{\"cityId\":\"179\",\"codes\":\"[\\\"崇阳县\\\"]\",\"dataId\":\"\",\"id\":\"1573\",\"name\":\"崇阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1574,\"values\":{\"cityId\":\"179\",\"codes\":\"[\\\"通山县\\\"]\",\"dataId\":\"\",\"id\":\"1574\",\"name\":\"通山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1575,\"values\":{\"cityId\":\"179\",\"codes\":\"[\\\"赤壁市\\\"]\",\"dataId\":\"\",\"id\":\"1575\",\"name\":\"赤壁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1576,\"values\":{\"cityId\":\"180\",\"codes\":\"[\\\"曾都区\\\"]\",\"dataId\":\"\",\"id\":\"1576\",\"name\":\"曾都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1577,\"values\":{\"cityId\":\"180\",\"codes\":\"[\\\"广水市\\\"]\",\"dataId\":\"\",\"id\":\"1577\",\"name\":\"广水市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1578,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"恩施市\\\"]\",\"dataId\":\"\",\"id\":\"1578\",\"name\":\"恩施市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1579,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"利川市\\\"]\",\"dataId\":\"\",\"id\":\"1579\",\"name\":\"利川市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1580,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"建始县\\\"]\",\"dataId\":\"\",\"id\":\"1580\",\"name\":\"建始县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1581,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"巴东县\\\"]\",\"dataId\":\"\",\"id\":\"1581\",\"name\":\"巴东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1582,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"宣恩县\\\"]\",\"dataId\":\"\",\"id\":\"1582\",\"name\":\"宣恩县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1583,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"咸丰县\\\"]\",\"dataId\":\"\",\"id\":\"1583\",\"name\":\"咸丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1584,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"来凤县\\\"]\",\"dataId\":\"\",\"id\":\"1584\",\"name\":\"来凤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1585,\"values\":{\"cityId\":\"181\",\"codes\":\"[\\\"鹤峰县\\\"]\",\"dataId\":\"\",\"id\":\"1585\",\"name\":\"鹤峰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1586,\"values\":{\"cityId\":\"182\",\"codes\":\"[\\\"仙桃市\\\"]\",\"dataId\":\"\",\"id\":\"1586\",\"name\":\"仙桃市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1587,\"values\":{\"cityId\":\"182\",\"codes\":\"[\\\"潜江市\\\"]\",\"dataId\":\"\",\"id\":\"1587\",\"name\":\"潜江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1588,\"values\":{\"cityId\":\"182\",\"codes\":\"[\\\"天门市\\\"]\",\"dataId\":\"\",\"id\":\"1588\",\"name\":\"天门市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1589,\"values\":{\"cityId\":\"182\",\"codes\":\"[\\\"神农架林区\\\"]\",\"dataId\":\"\",\"id\":\"1589\",\"name\":\"神农架林区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1590,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"芙蓉区\\\"]\",\"dataId\":\"\",\"id\":\"1590\",\"name\":\"芙蓉区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1591,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"天心区\\\"]\",\"dataId\":\"\",\"id\":\"1591\",\"name\":\"天心区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1592,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"岳麓区\\\"]\",\"dataId\":\"\",\"id\":\"1592\",\"name\":\"岳麓区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1593,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"开福区\\\"]\",\"dataId\":\"\",\"id\":\"1593\",\"name\":\"开福区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1594,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"雨花区\\\"]\",\"dataId\":\"\",\"id\":\"1594\",\"name\":\"雨花区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1595,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"长沙县\\\"]\",\"dataId\":\"\",\"id\":\"1595\",\"name\":\"长沙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1596,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"望城县\\\"]\",\"dataId\":\"\",\"id\":\"1596\",\"name\":\"望城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1597,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"宁乡县\\\"]\",\"dataId\":\"\",\"id\":\"1597\",\"name\":\"宁乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1598,\"values\":{\"cityId\":\"183\",\"codes\":\"[\\\"浏阳市\\\"]\",\"dataId\":\"\",\"id\":\"1598\",\"name\":\"浏阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1599,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"荷塘区\\\"]\",\"dataId\":\"\",\"id\":\"1599\",\"name\":\"荷塘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1600,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"芦淞区\\\"]\",\"dataId\":\"\",\"id\":\"1600\",\"name\":\"芦淞区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1601,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"石峰区\\\"]\",\"dataId\":\"\",\"id\":\"1601\",\"name\":\"石峰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1602,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"天元区\\\"]\",\"dataId\":\"\",\"id\":\"1602\",\"name\":\"天元区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1603,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"株洲县\\\"]\",\"dataId\":\"\",\"id\":\"1603\",\"name\":\"株洲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1604,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"攸县\\\"]\",\"dataId\":\"\",\"id\":\"1604\",\"name\":\"攸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1605,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"茶陵县\\\"]\",\"dataId\":\"\",\"id\":\"1605\",\"name\":\"茶陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1606,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"炎陵县\\\"]\",\"dataId\":\"\",\"id\":\"1606\",\"name\":\"炎陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1607,\"values\":{\"cityId\":\"184\",\"codes\":\"[\\\"醴陵市\\\"]\",\"dataId\":\"\",\"id\":\"1607\",\"name\":\"醴陵市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1608,\"values\":{\"cityId\":\"185\",\"codes\":\"[\\\"雨湖区\\\"]\",\"dataId\":\"\",\"id\":\"1608\",\"name\":\"雨湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1609,\"values\":{\"cityId\":\"185\",\"codes\":\"[\\\"岳塘区\\\"]\",\"dataId\":\"\",\"id\":\"1609\",\"name\":\"岳塘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1610,\"values\":{\"cityId\":\"185\",\"codes\":\"[\\\"湘潭县\\\"]\",\"dataId\":\"\",\"id\":\"1610\",\"name\":\"湘潭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1611,\"values\":{\"cityId\":\"185\",\"codes\":\"[\\\"湘乡市\\\"]\",\"dataId\":\"\",\"id\":\"1611\",\"name\":\"湘乡市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1612,\"values\":{\"cityId\":\"185\",\"codes\":\"[\\\"韶山市\\\"]\",\"dataId\":\"\",\"id\":\"1612\",\"name\":\"韶山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1613,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"珠晖区\\\"]\",\"dataId\":\"\",\"id\":\"1613\",\"name\":\"珠晖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1614,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"雁峰区\\\"]\",\"dataId\":\"\",\"id\":\"1614\",\"name\":\"雁峰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1615,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"石鼓区\\\"]\",\"dataId\":\"\",\"id\":\"1615\",\"name\":\"石鼓区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1616,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"蒸湘区\\\"]\",\"dataId\":\"\",\"id\":\"1616\",\"name\":\"蒸湘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1617,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"南岳区\\\"]\",\"dataId\":\"\",\"id\":\"1617\",\"name\":\"南岳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1618,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"衡阳县\\\"]\",\"dataId\":\"\",\"id\":\"1618\",\"name\":\"衡阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1619,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"衡南县\\\"]\",\"dataId\":\"\",\"id\":\"1619\",\"name\":\"衡南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1620,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"衡山县\\\"]\",\"dataId\":\"\",\"id\":\"1620\",\"name\":\"衡山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1621,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"衡东县\\\"]\",\"dataId\":\"\",\"id\":\"1621\",\"name\":\"衡东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1622,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"祁东县\\\"]\",\"dataId\":\"\",\"id\":\"1622\",\"name\":\"祁东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1623,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"耒阳市\\\"]\",\"dataId\":\"\",\"id\":\"1623\",\"name\":\"耒阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1624,\"values\":{\"cityId\":\"186\",\"codes\":\"[\\\"常宁市\\\"]\",\"dataId\":\"\",\"id\":\"1624\",\"name\":\"常宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1625,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"双清区\\\"]\",\"dataId\":\"\",\"id\":\"1625\",\"name\":\"双清区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1626,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"大祥区\\\"]\",\"dataId\":\"\",\"id\":\"1626\",\"name\":\"大祥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1627,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"北塔区\\\"]\",\"dataId\":\"\",\"id\":\"1627\",\"name\":\"北塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1628,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"邵东县\\\"]\",\"dataId\":\"\",\"id\":\"1628\",\"name\":\"邵东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1629,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"新邵县\\\"]\",\"dataId\":\"\",\"id\":\"1629\",\"name\":\"新邵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1630,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"邵阳县\\\"]\",\"dataId\":\"\",\"id\":\"1630\",\"name\":\"邵阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1631,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"隆回县\\\"]\",\"dataId\":\"\",\"id\":\"1631\",\"name\":\"隆回县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1632,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"洞口县\\\"]\",\"dataId\":\"\",\"id\":\"1632\",\"name\":\"洞口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1633,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"绥宁县\\\"]\",\"dataId\":\"\",\"id\":\"1633\",\"name\":\"绥宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1634,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"新宁县\\\"]\",\"dataId\":\"\",\"id\":\"1634\",\"name\":\"新宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1635,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"城步苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1635\",\"name\":\"城步苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1636,\"values\":{\"cityId\":\"187\",\"codes\":\"[\\\"武冈市\\\"]\",\"dataId\":\"\",\"id\":\"1636\",\"name\":\"武冈市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1637,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"岳阳楼区\\\"]\",\"dataId\":\"\",\"id\":\"1637\",\"name\":\"岳阳楼区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1638,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"云溪区\\\"]\",\"dataId\":\"\",\"id\":\"1638\",\"name\":\"云溪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1639,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"君山区\\\"]\",\"dataId\":\"\",\"id\":\"1639\",\"name\":\"君山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1640,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"岳阳县\\\"]\",\"dataId\":\"\",\"id\":\"1640\",\"name\":\"岳阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1641,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"华容县\\\"]\",\"dataId\":\"\",\"id\":\"1641\",\"name\":\"华容县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1642,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"湘阴县\\\"]\",\"dataId\":\"\",\"id\":\"1642\",\"name\":\"湘阴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1643,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"平江县\\\"]\",\"dataId\":\"\",\"id\":\"1643\",\"name\":\"平江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1644,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"汨罗市\\\"]\",\"dataId\":\"\",\"id\":\"1644\",\"name\":\"汨罗市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1645,\"values\":{\"cityId\":\"188\",\"codes\":\"[\\\"临湘市\\\"]\",\"dataId\":\"\",\"id\":\"1645\",\"name\":\"临湘市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1646,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"武陵区\\\"]\",\"dataId\":\"\",\"id\":\"1646\",\"name\":\"武陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1647,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"鼎城区\\\"]\",\"dataId\":\"\",\"id\":\"1647\",\"name\":\"鼎城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1648,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"安乡县\\\"]\",\"dataId\":\"\",\"id\":\"1648\",\"name\":\"安乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1649,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"汉寿县\\\"]\",\"dataId\":\"\",\"id\":\"1649\",\"name\":\"汉寿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1650,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"澧县\\\"]\",\"dataId\":\"\",\"id\":\"1650\",\"name\":\"澧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1651,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"临澧县\\\"]\",\"dataId\":\"\",\"id\":\"1651\",\"name\":\"临澧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1652,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"桃源县\\\"]\",\"dataId\":\"\",\"id\":\"1652\",\"name\":\"桃源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1653,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"石门县\\\"]\",\"dataId\":\"\",\"id\":\"1653\",\"name\":\"石门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1654,\"values\":{\"cityId\":\"189\",\"codes\":\"[\\\"津市市\\\"]\",\"dataId\":\"\",\"id\":\"1654\",\"name\":\"津市市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1655,\"values\":{\"cityId\":\"190\",\"codes\":\"[\\\"永定区\\\"]\",\"dataId\":\"\",\"id\":\"1655\",\"name\":\"永定区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1656,\"values\":{\"cityId\":\"190\",\"codes\":\"[\\\"武陵源区\\\"]\",\"dataId\":\"\",\"id\":\"1656\",\"name\":\"武陵源区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1657,\"values\":{\"cityId\":\"190\",\"codes\":\"[\\\"慈利县\\\"]\",\"dataId\":\"\",\"id\":\"1657\",\"name\":\"慈利县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1658,\"values\":{\"cityId\":\"190\",\"codes\":\"[\\\"桑植县\\\"]\",\"dataId\":\"\",\"id\":\"1658\",\"name\":\"桑植县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1659,\"values\":{\"cityId\":\"191\",\"codes\":\"[\\\"资阳区\\\"]\",\"dataId\":\"\",\"id\":\"1659\",\"name\":\"资阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1660,\"values\":{\"cityId\":\"191\",\"codes\":\"[\\\"赫山区\\\"]\",\"dataId\":\"\",\"id\":\"1660\",\"name\":\"赫山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1661,\"values\":{\"cityId\":\"191\",\"codes\":\"[\\\"南县\\\"]\",\"dataId\":\"\",\"id\":\"1661\",\"name\":\"南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1662,\"values\":{\"cityId\":\"191\",\"codes\":\"[\\\"桃江县\\\"]\",\"dataId\":\"\",\"id\":\"1662\",\"name\":\"桃江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1663,\"values\":{\"cityId\":\"191\",\"codes\":\"[\\\"安化县\\\"]\",\"dataId\":\"\",\"id\":\"1663\",\"name\":\"安化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1664,\"values\":{\"cityId\":\"191\",\"codes\":\"[\\\"沅江市\\\"]\",\"dataId\":\"\",\"id\":\"1664\",\"name\":\"沅江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1665,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"北湖区\\\"]\",\"dataId\":\"\",\"id\":\"1665\",\"name\":\"北湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1666,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"苏仙区\\\"]\",\"dataId\":\"\",\"id\":\"1666\",\"name\":\"苏仙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1667,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"桂阳县\\\"]\",\"dataId\":\"\",\"id\":\"1667\",\"name\":\"桂阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1668,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"宜章县\\\"]\",\"dataId\":\"\",\"id\":\"1668\",\"name\":\"宜章县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1669,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"永兴县\\\"]\",\"dataId\":\"\",\"id\":\"1669\",\"name\":\"永兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1670,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"嘉禾县\\\"]\",\"dataId\":\"\",\"id\":\"1670\",\"name\":\"嘉禾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1671,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"临武县\\\"]\",\"dataId\":\"\",\"id\":\"1671\",\"name\":\"临武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1672,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"汝城县\\\"]\",\"dataId\":\"\",\"id\":\"1672\",\"name\":\"汝城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1673,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"桂东县\\\"]\",\"dataId\":\"\",\"id\":\"1673\",\"name\":\"桂东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1674,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"安仁县\\\"]\",\"dataId\":\"\",\"id\":\"1674\",\"name\":\"安仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1675,\"values\":{\"cityId\":\"192\",\"codes\":\"[\\\"资兴市\\\"]\",\"dataId\":\"\",\"id\":\"1675\",\"name\":\"资兴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1676,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"芝山区\\\"]\",\"dataId\":\"\",\"id\":\"1676\",\"name\":\"芝山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1677,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"冷水滩区\\\"]\",\"dataId\":\"\",\"id\":\"1677\",\"name\":\"冷水滩区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1678,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"祁阳县\\\"]\",\"dataId\":\"\",\"id\":\"1678\",\"name\":\"祁阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1679,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"东安县\\\"]\",\"dataId\":\"\",\"id\":\"1679\",\"name\":\"东安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1680,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"双牌县\\\"]\",\"dataId\":\"\",\"id\":\"1680\",\"name\":\"双牌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1681,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"道县\\\"]\",\"dataId\":\"\",\"id\":\"1681\",\"name\":\"道县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1682,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"江永县\\\"]\",\"dataId\":\"\",\"id\":\"1682\",\"name\":\"江永县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1683,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"宁远县\\\"]\",\"dataId\":\"\",\"id\":\"1683\",\"name\":\"宁远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1684,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"蓝山县\\\"]\",\"dataId\":\"\",\"id\":\"1684\",\"name\":\"蓝山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1685,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"新田县\\\"]\",\"dataId\":\"\",\"id\":\"1685\",\"name\":\"新田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1686,\"values\":{\"cityId\":\"193\",\"codes\":\"[\\\"江华瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1686\",\"name\":\"江华瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1687,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"鹤城区\\\"]\",\"dataId\":\"\",\"id\":\"1687\",\"name\":\"鹤城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1688,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"中方县\\\"]\",\"dataId\":\"\",\"id\":\"1688\",\"name\":\"中方县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1689,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"沅陵县\\\"]\",\"dataId\":\"\",\"id\":\"1689\",\"name\":\"沅陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1690,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"辰溪县\\\"]\",\"dataId\":\"\",\"id\":\"1690\",\"name\":\"辰溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1691,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"溆浦县\\\"]\",\"dataId\":\"\",\"id\":\"1691\",\"name\":\"溆浦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1692,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"会同县\\\"]\",\"dataId\":\"\",\"id\":\"1692\",\"name\":\"会同县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1693,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"麻阳苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1693\",\"name\":\"麻阳苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1694,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"新晃侗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1694\",\"name\":\"新晃侗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1695,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"芷江侗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1695\",\"name\":\"芷江侗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1696,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"靖州苗族侗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1696\",\"name\":\"靖州苗族侗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1697,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"通道侗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1697\",\"name\":\"通道侗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1698,\"values\":{\"cityId\":\"194\",\"codes\":\"[\\\"洪江市\\\"]\",\"dataId\":\"\",\"id\":\"1698\",\"name\":\"洪江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1699,\"values\":{\"cityId\":\"195\",\"codes\":\"[\\\"娄星区\\\"]\",\"dataId\":\"\",\"id\":\"1699\",\"name\":\"娄星区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1700,\"values\":{\"cityId\":\"195\",\"codes\":\"[\\\"双峰县\\\"]\",\"dataId\":\"\",\"id\":\"1700\",\"name\":\"双峰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1701,\"values\":{\"cityId\":\"195\",\"codes\":\"[\\\"新化县\\\"]\",\"dataId\":\"\",\"id\":\"1701\",\"name\":\"新化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1702,\"values\":{\"cityId\":\"195\",\"codes\":\"[\\\"冷水江市\\\"]\",\"dataId\":\"\",\"id\":\"1702\",\"name\":\"冷水江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1703,\"values\":{\"cityId\":\"195\",\"codes\":\"[\\\"涟源市\\\"]\",\"dataId\":\"\",\"id\":\"1703\",\"name\":\"涟源市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1704,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"吉首市\\\"]\",\"dataId\":\"\",\"id\":\"1704\",\"name\":\"吉首市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1705,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"泸溪县\\\"]\",\"dataId\":\"\",\"id\":\"1705\",\"name\":\"泸溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1706,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"凤凰县\\\"]\",\"dataId\":\"\",\"id\":\"1706\",\"name\":\"凤凰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1707,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"花垣县\\\"]\",\"dataId\":\"\",\"id\":\"1707\",\"name\":\"花垣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1708,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"保靖县\\\"]\",\"dataId\":\"\",\"id\":\"1708\",\"name\":\"保靖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1709,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"古丈县\\\"]\",\"dataId\":\"\",\"id\":\"1709\",\"name\":\"古丈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1710,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"永顺县\\\"]\",\"dataId\":\"\",\"id\":\"1710\",\"name\":\"永顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1711,\"values\":{\"cityId\":\"196\",\"codes\":\"[\\\"龙山县\\\"]\",\"dataId\":\"\",\"id\":\"1711\",\"name\":\"龙山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1712,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"荔湾区\\\"]\",\"dataId\":\"\",\"id\":\"1712\",\"name\":\"荔湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1713,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"越秀区\\\"]\",\"dataId\":\"\",\"id\":\"1713\",\"name\":\"越秀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1714,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"海珠区\\\"]\",\"dataId\":\"\",\"id\":\"1714\",\"name\":\"海珠区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1715,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"天河区\\\"]\",\"dataId\":\"\",\"id\":\"1715\",\"name\":\"天河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1716,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"芳村区\\\"]\",\"dataId\":\"\",\"id\":\"1716\",\"name\":\"芳村区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1717,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"白云区\\\"]\",\"dataId\":\"\",\"id\":\"1717\",\"name\":\"白云区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1718,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"黄埔区\\\"]\",\"dataId\":\"\",\"id\":\"1718\",\"name\":\"黄埔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1719,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"番禺区\\\"]\",\"dataId\":\"\",\"id\":\"1719\",\"name\":\"番禺区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1720,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"花都区\\\"]\",\"dataId\":\"\",\"id\":\"1720\",\"name\":\"花都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1721,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"增城市\\\"]\",\"dataId\":\"\",\"id\":\"1721\",\"name\":\"增城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1722,\"values\":{\"cityId\":\"197\",\"codes\":\"[\\\"从化市\\\"]\",\"dataId\":\"\",\"id\":\"1722\",\"name\":\"从化市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1723,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"武江区\\\"]\",\"dataId\":\"\",\"id\":\"1723\",\"name\":\"武江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1724,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"浈江区\\\"]\",\"dataId\":\"\",\"id\":\"1724\",\"name\":\"浈江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1725,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"曲江区\\\"]\",\"dataId\":\"\",\"id\":\"1725\",\"name\":\"曲江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1726,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"始兴县\\\"]\",\"dataId\":\"\",\"id\":\"1726\",\"name\":\"始兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1727,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"仁化县\\\"]\",\"dataId\":\"\",\"id\":\"1727\",\"name\":\"仁化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1728,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"翁源县\\\"]\",\"dataId\":\"\",\"id\":\"1728\",\"name\":\"翁源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1729,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"乳源瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1729\",\"name\":\"乳源瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1730,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"新丰县\\\"]\",\"dataId\":\"\",\"id\":\"1730\",\"name\":\"新丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1731,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"乐昌市\\\"]\",\"dataId\":\"\",\"id\":\"1731\",\"name\":\"乐昌市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1732,\"values\":{\"cityId\":\"198\",\"codes\":\"[\\\"南雄市\\\"]\",\"dataId\":\"\",\"id\":\"1732\",\"name\":\"南雄市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1733,\"values\":{\"cityId\":\"199\",\"codes\":\"[\\\"罗湖区\\\"]\",\"dataId\":\"\",\"id\":\"1733\",\"name\":\"罗湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1734,\"values\":{\"cityId\":\"199\",\"codes\":\"[\\\"福田区\\\"]\",\"dataId\":\"\",\"id\":\"1734\",\"name\":\"福田区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1735,\"values\":{\"cityId\":\"199\",\"codes\":\"[\\\"宝安区\\\"]\",\"dataId\":\"\",\"id\":\"1735\",\"name\":\"宝安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1736,\"values\":{\"cityId\":\"199\",\"codes\":\"[\\\"龙岗区\\\"]\",\"dataId\":\"\",\"id\":\"1736\",\"name\":\"龙岗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1737,\"values\":{\"cityId\":\"199\",\"codes\":\"[\\\"盐田区\\\"]\",\"dataId\":\"\",\"id\":\"1737\",\"name\":\"盐田区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1738,\"values\":{\"cityId\":\"200\",\"codes\":\"[\\\"香洲区\\\"]\",\"dataId\":\"\",\"id\":\"1738\",\"name\":\"香洲区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1739,\"values\":{\"cityId\":\"200\",\"codes\":\"[\\\"斗门区\\\"]\",\"dataId\":\"\",\"id\":\"1739\",\"name\":\"斗门区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1740,\"values\":{\"cityId\":\"200\",\"codes\":\"[\\\"金湾区\\\"]\",\"dataId\":\"\",\"id\":\"1740\",\"name\":\"金湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1741,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"龙湖区\\\"]\",\"dataId\":\"\",\"id\":\"1741\",\"name\":\"龙湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1742,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"金平区\\\"]\",\"dataId\":\"\",\"id\":\"1742\",\"name\":\"金平区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1743,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"濠江区\\\"]\",\"dataId\":\"\",\"id\":\"1743\",\"name\":\"濠江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1744,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"潮阳区\\\"]\",\"dataId\":\"\",\"id\":\"1744\",\"name\":\"潮阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1745,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"潮南区\\\"]\",\"dataId\":\"\",\"id\":\"1745\",\"name\":\"潮南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1746,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"澄海区\\\"]\",\"dataId\":\"\",\"id\":\"1746\",\"name\":\"澄海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1747,\"values\":{\"cityId\":\"201\",\"codes\":\"[\\\"南澳县\\\"]\",\"dataId\":\"\",\"id\":\"1747\",\"name\":\"南澳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1748,\"values\":{\"cityId\":\"202\",\"codes\":\"[\\\"禅城区\\\"]\",\"dataId\":\"\",\"id\":\"1748\",\"name\":\"禅城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1749,\"values\":{\"cityId\":\"202\",\"codes\":\"[\\\"南海区\\\"]\",\"dataId\":\"\",\"id\":\"1749\",\"name\":\"南海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1750,\"values\":{\"cityId\":\"202\",\"codes\":\"[\\\"顺德区\\\"]\",\"dataId\":\"\",\"id\":\"1750\",\"name\":\"顺德区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1751,\"values\":{\"cityId\":\"202\",\"codes\":\"[\\\"三水区\\\"]\",\"dataId\":\"\",\"id\":\"1751\",\"name\":\"三水区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1752,\"values\":{\"cityId\":\"202\",\"codes\":\"[\\\"高明区\\\"]\",\"dataId\":\"\",\"id\":\"1752\",\"name\":\"高明区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1753,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"蓬江区\\\"]\",\"dataId\":\"\",\"id\":\"1753\",\"name\":\"蓬江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1754,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"江海区\\\"]\",\"dataId\":\"\",\"id\":\"1754\",\"name\":\"江海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1755,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"新会区\\\"]\",\"dataId\":\"\",\"id\":\"1755\",\"name\":\"新会区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1756,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"台山市\\\"]\",\"dataId\":\"\",\"id\":\"1756\",\"name\":\"台山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1757,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"开平市\\\"]\",\"dataId\":\"\",\"id\":\"1757\",\"name\":\"开平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1758,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"鹤山市\\\"]\",\"dataId\":\"\",\"id\":\"1758\",\"name\":\"鹤山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1759,\"values\":{\"cityId\":\"203\",\"codes\":\"[\\\"恩平市\\\"]\",\"dataId\":\"\",\"id\":\"1759\",\"name\":\"恩平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1760,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"赤坎区\\\"]\",\"dataId\":\"\",\"id\":\"1760\",\"name\":\"赤坎区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1761,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"霞山区\\\"]\",\"dataId\":\"\",\"id\":\"1761\",\"name\":\"霞山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1762,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"坡头区\\\"]\",\"dataId\":\"\",\"id\":\"1762\",\"name\":\"坡头区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1763,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"麻章区\\\"]\",\"dataId\":\"\",\"id\":\"1763\",\"name\":\"麻章区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1764,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"遂溪县\\\"]\",\"dataId\":\"\",\"id\":\"1764\",\"name\":\"遂溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1765,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"徐闻县\\\"]\",\"dataId\":\"\",\"id\":\"1765\",\"name\":\"徐闻县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1766,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"廉江市\\\"]\",\"dataId\":\"\",\"id\":\"1766\",\"name\":\"廉江市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1767,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"雷州市\\\"]\",\"dataId\":\"\",\"id\":\"1767\",\"name\":\"雷州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1768,\"values\":{\"cityId\":\"204\",\"codes\":\"[\\\"吴川市\\\"]\",\"dataId\":\"\",\"id\":\"1768\",\"name\":\"吴川市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1769,\"values\":{\"cityId\":\"205\",\"codes\":\"[\\\"茂南区\\\"]\",\"dataId\":\"\",\"id\":\"1769\",\"name\":\"茂南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1770,\"values\":{\"cityId\":\"205\",\"codes\":\"[\\\"茂港区\\\"]\",\"dataId\":\"\",\"id\":\"1770\",\"name\":\"茂港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1771,\"values\":{\"cityId\":\"205\",\"codes\":\"[\\\"电白县\\\"]\",\"dataId\":\"\",\"id\":\"1771\",\"name\":\"电白县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1772,\"values\":{\"cityId\":\"205\",\"codes\":\"[\\\"高州市\\\"]\",\"dataId\":\"\",\"id\":\"1772\",\"name\":\"高州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1773,\"values\":{\"cityId\":\"205\",\"codes\":\"[\\\"化州市\\\"]\",\"dataId\":\"\",\"id\":\"1773\",\"name\":\"化州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1774,\"values\":{\"cityId\":\"205\",\"codes\":\"[\\\"信宜市\\\"]\",\"dataId\":\"\",\"id\":\"1774\",\"name\":\"信宜市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1775,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"端州区\\\"]\",\"dataId\":\"\",\"id\":\"1775\",\"name\":\"端州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1776,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"鼎湖区\\\"]\",\"dataId\":\"\",\"id\":\"1776\",\"name\":\"鼎湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1777,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"广宁县\\\"]\",\"dataId\":\"\",\"id\":\"1777\",\"name\":\"广宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1778,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"怀集县\\\"]\",\"dataId\":\"\",\"id\":\"1778\",\"name\":\"怀集县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1779,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"封开县\\\"]\",\"dataId\":\"\",\"id\":\"1779\",\"name\":\"封开县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1780,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"德庆县\\\"]\",\"dataId\":\"\",\"id\":\"1780\",\"name\":\"德庆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1781,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"高要市\\\"]\",\"dataId\":\"\",\"id\":\"1781\",\"name\":\"高要市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1782,\"values\":{\"cityId\":\"206\",\"codes\":\"[\\\"四会市\\\"]\",\"dataId\":\"\",\"id\":\"1782\",\"name\":\"四会市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1783,\"values\":{\"cityId\":\"207\",\"codes\":\"[\\\"惠城区\\\"]\",\"dataId\":\"\",\"id\":\"1783\",\"name\":\"惠城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1784,\"values\":{\"cityId\":\"207\",\"codes\":\"[\\\"惠阳区\\\"]\",\"dataId\":\"\",\"id\":\"1784\",\"name\":\"惠阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1785,\"values\":{\"cityId\":\"207\",\"codes\":\"[\\\"博罗县\\\"]\",\"dataId\":\"\",\"id\":\"1785\",\"name\":\"博罗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1786,\"values\":{\"cityId\":\"207\",\"codes\":\"[\\\"惠东县\\\"]\",\"dataId\":\"\",\"id\":\"1786\",\"name\":\"惠东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1787,\"values\":{\"cityId\":\"207\",\"codes\":\"[\\\"龙门县\\\"]\",\"dataId\":\"\",\"id\":\"1787\",\"name\":\"龙门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1788,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"梅江区\\\"]\",\"dataId\":\"\",\"id\":\"1788\",\"name\":\"梅江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1789,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"梅县\\\"]\",\"dataId\":\"\",\"id\":\"1789\",\"name\":\"梅县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1790,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"大埔县\\\"]\",\"dataId\":\"\",\"id\":\"1790\",\"name\":\"大埔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1791,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"丰顺县\\\"]\",\"dataId\":\"\",\"id\":\"1791\",\"name\":\"丰顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1792,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"五华县\\\"]\",\"dataId\":\"\",\"id\":\"1792\",\"name\":\"五华县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1793,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"平远县\\\"]\",\"dataId\":\"\",\"id\":\"1793\",\"name\":\"平远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1794,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"蕉岭县\\\"]\",\"dataId\":\"\",\"id\":\"1794\",\"name\":\"蕉岭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1795,\"values\":{\"cityId\":\"208\",\"codes\":\"[\\\"兴宁市\\\"]\",\"dataId\":\"\",\"id\":\"1795\",\"name\":\"兴宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1796,\"values\":{\"cityId\":\"209\",\"codes\":\"[\\\"海丰县\\\"]\",\"dataId\":\"\",\"id\":\"1796\",\"name\":\"海丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1797,\"values\":{\"cityId\":\"209\",\"codes\":\"[\\\"陆河县\\\"]\",\"dataId\":\"\",\"id\":\"1797\",\"name\":\"陆河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1798,\"values\":{\"cityId\":\"209\",\"codes\":\"[\\\"陆丰市\\\"]\",\"dataId\":\"\",\"id\":\"1798\",\"name\":\"陆丰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1799,\"values\":{\"cityId\":\"210\",\"codes\":\"[\\\"源城区\\\"]\",\"dataId\":\"\",\"id\":\"1799\",\"name\":\"源城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1800,\"values\":{\"cityId\":\"210\",\"codes\":\"[\\\"紫金县\\\"]\",\"dataId\":\"\",\"id\":\"1800\",\"name\":\"紫金县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1801,\"values\":{\"cityId\":\"210\",\"codes\":\"[\\\"龙川县\\\"]\",\"dataId\":\"\",\"id\":\"1801\",\"name\":\"龙川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1802,\"values\":{\"cityId\":\"210\",\"codes\":\"[\\\"连平县\\\"]\",\"dataId\":\"\",\"id\":\"1802\",\"name\":\"连平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1803,\"values\":{\"cityId\":\"210\",\"codes\":\"[\\\"和平县\\\"]\",\"dataId\":\"\",\"id\":\"1803\",\"name\":\"和平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1804,\"values\":{\"cityId\":\"210\",\"codes\":\"[\\\"东源县\\\"]\",\"dataId\":\"\",\"id\":\"1804\",\"name\":\"东源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1805,\"values\":{\"cityId\":\"211\",\"codes\":\"[\\\"江城区\\\"]\",\"dataId\":\"\",\"id\":\"1805\",\"name\":\"江城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1806,\"values\":{\"cityId\":\"211\",\"codes\":\"[\\\"阳西县\\\"]\",\"dataId\":\"\",\"id\":\"1806\",\"name\":\"阳西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1807,\"values\":{\"cityId\":\"211\",\"codes\":\"[\\\"阳东县\\\"]\",\"dataId\":\"\",\"id\":\"1807\",\"name\":\"阳东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1808,\"values\":{\"cityId\":\"211\",\"codes\":\"[\\\"阳春市\\\"]\",\"dataId\":\"\",\"id\":\"1808\",\"name\":\"阳春市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1809,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"清城区\\\"]\",\"dataId\":\"\",\"id\":\"1809\",\"name\":\"清城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1810,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"佛冈县\\\"]\",\"dataId\":\"\",\"id\":\"1810\",\"name\":\"佛冈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1811,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"阳山县\\\"]\",\"dataId\":\"\",\"id\":\"1811\",\"name\":\"阳山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1812,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"连山壮族瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1812\",\"name\":\"连山壮族瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1813,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"连南瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1813\",\"name\":\"连南瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1814,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"清新县\\\"]\",\"dataId\":\"\",\"id\":\"1814\",\"name\":\"清新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1815,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"英德市\\\"]\",\"dataId\":\"\",\"id\":\"1815\",\"name\":\"英德市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1816,\"values\":{\"cityId\":\"212\",\"codes\":\"[\\\"连州市\\\"]\",\"dataId\":\"\",\"id\":\"1816\",\"name\":\"连州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1817,\"values\":{\"cityId\":\"215\",\"codes\":\"[\\\"湘桥区\\\"]\",\"dataId\":\"\",\"id\":\"1817\",\"name\":\"湘桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1818,\"values\":{\"cityId\":\"215\",\"codes\":\"[\\\"潮安县\\\"]\",\"dataId\":\"\",\"id\":\"1818\",\"name\":\"潮安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1819,\"values\":{\"cityId\":\"215\",\"codes\":\"[\\\"饶平县\\\"]\",\"dataId\":\"\",\"id\":\"1819\",\"name\":\"饶平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1820,\"values\":{\"cityId\":\"216\",\"codes\":\"[\\\"榕城区\\\"]\",\"dataId\":\"\",\"id\":\"1820\",\"name\":\"榕城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1821,\"values\":{\"cityId\":\"216\",\"codes\":\"[\\\"揭东县\\\"]\",\"dataId\":\"\",\"id\":\"1821\",\"name\":\"揭东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1822,\"values\":{\"cityId\":\"216\",\"codes\":\"[\\\"揭西县\\\"]\",\"dataId\":\"\",\"id\":\"1822\",\"name\":\"揭西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1823,\"values\":{\"cityId\":\"216\",\"codes\":\"[\\\"惠来县\\\"]\",\"dataId\":\"\",\"id\":\"1823\",\"name\":\"惠来县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1824,\"values\":{\"cityId\":\"216\",\"codes\":\"[\\\"普宁市\\\"]\",\"dataId\":\"\",\"id\":\"1824\",\"name\":\"普宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1825,\"values\":{\"cityId\":\"217\",\"codes\":\"[\\\"云城区\\\"]\",\"dataId\":\"\",\"id\":\"1825\",\"name\":\"云城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1826,\"values\":{\"cityId\":\"217\",\"codes\":\"[\\\"新兴县\\\"]\",\"dataId\":\"\",\"id\":\"1826\",\"name\":\"新兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1827,\"values\":{\"cityId\":\"217\",\"codes\":\"[\\\"郁南县\\\"]\",\"dataId\":\"\",\"id\":\"1827\",\"name\":\"郁南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1828,\"values\":{\"cityId\":\"217\",\"codes\":\"[\\\"云安县\\\"]\",\"dataId\":\"\",\"id\":\"1828\",\"name\":\"云安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1829,\"values\":{\"cityId\":\"217\",\"codes\":\"[\\\"罗定市\\\"]\",\"dataId\":\"\",\"id\":\"1829\",\"name\":\"罗定市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1830,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"兴宁区\\\"]\",\"dataId\":\"\",\"id\":\"1830\",\"name\":\"兴宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1831,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"青秀区\\\"]\",\"dataId\":\"\",\"id\":\"1831\",\"name\":\"青秀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1832,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"江南区\\\"]\",\"dataId\":\"\",\"id\":\"1832\",\"name\":\"江南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1833,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"西乡塘区\\\"]\",\"dataId\":\"\",\"id\":\"1833\",\"name\":\"西乡塘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1834,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"良庆区\\\"]\",\"dataId\":\"\",\"id\":\"1834\",\"name\":\"良庆区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1835,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"邕宁区\\\"]\",\"dataId\":\"\",\"id\":\"1835\",\"name\":\"邕宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1836,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"武鸣县\\\"]\",\"dataId\":\"\",\"id\":\"1836\",\"name\":\"武鸣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1837,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"隆安县\\\"]\",\"dataId\":\"\",\"id\":\"1837\",\"name\":\"隆安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1838,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"马山县\\\"]\",\"dataId\":\"\",\"id\":\"1838\",\"name\":\"马山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1839,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"上林县\\\"]\",\"dataId\":\"\",\"id\":\"1839\",\"name\":\"上林县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1840,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"宾阳县\\\"]\",\"dataId\":\"\",\"id\":\"1840\",\"name\":\"宾阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1841,\"values\":{\"cityId\":\"218\",\"codes\":\"[\\\"横县\\\"]\",\"dataId\":\"\",\"id\":\"1841\",\"name\":\"横县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1842,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"城中区\\\"]\",\"dataId\":\"\",\"id\":\"1842\",\"name\":\"城中区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1843,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"鱼峰区\\\"]\",\"dataId\":\"\",\"id\":\"1843\",\"name\":\"鱼峰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1844,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"柳南区\\\"]\",\"dataId\":\"\",\"id\":\"1844\",\"name\":\"柳南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1845,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"柳北区\\\"]\",\"dataId\":\"\",\"id\":\"1845\",\"name\":\"柳北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1846,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"柳江县\\\"]\",\"dataId\":\"\",\"id\":\"1846\",\"name\":\"柳江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1847,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"柳城县\\\"]\",\"dataId\":\"\",\"id\":\"1847\",\"name\":\"柳城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1848,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"鹿寨县\\\"]\",\"dataId\":\"\",\"id\":\"1848\",\"name\":\"鹿寨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1849,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"融安县\\\"]\",\"dataId\":\"\",\"id\":\"1849\",\"name\":\"融安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1850,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"融水苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1850\",\"name\":\"融水苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1851,\"values\":{\"cityId\":\"219\",\"codes\":\"[\\\"三江侗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1851\",\"name\":\"三江侗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1852,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"秀峰区\\\"]\",\"dataId\":\"\",\"id\":\"1852\",\"name\":\"秀峰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1853,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"叠彩区\\\"]\",\"dataId\":\"\",\"id\":\"1853\",\"name\":\"叠彩区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1854,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"象山区\\\"]\",\"dataId\":\"\",\"id\":\"1854\",\"name\":\"象山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1855,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"七星区\\\"]\",\"dataId\":\"\",\"id\":\"1855\",\"name\":\"七星区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1856,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"雁山区\\\"]\",\"dataId\":\"\",\"id\":\"1856\",\"name\":\"雁山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1857,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"阳朔县\\\"]\",\"dataId\":\"\",\"id\":\"1857\",\"name\":\"阳朔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1858,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"临桂县\\\"]\",\"dataId\":\"\",\"id\":\"1858\",\"name\":\"临桂县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1859,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"灵川县\\\"]\",\"dataId\":\"\",\"id\":\"1859\",\"name\":\"灵川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1860,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"全州县\\\"]\",\"dataId\":\"\",\"id\":\"1860\",\"name\":\"全州县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1861,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"兴安县\\\"]\",\"dataId\":\"\",\"id\":\"1861\",\"name\":\"兴安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1862,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"永福县\\\"]\",\"dataId\":\"\",\"id\":\"1862\",\"name\":\"永福县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1863,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"灌阳县\\\"]\",\"dataId\":\"\",\"id\":\"1863\",\"name\":\"灌阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1864,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"龙胜各族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1864\",\"name\":\"龙胜各族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1865,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"资源县\\\"]\",\"dataId\":\"\",\"id\":\"1865\",\"name\":\"资源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1866,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"平乐县\\\"]\",\"dataId\":\"\",\"id\":\"1866\",\"name\":\"平乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1867,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"荔蒲县\\\"]\",\"dataId\":\"\",\"id\":\"1867\",\"name\":\"荔蒲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1868,\"values\":{\"cityId\":\"220\",\"codes\":\"[\\\"恭城瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1868\",\"name\":\"恭城瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1869,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"万秀区\\\"]\",\"dataId\":\"\",\"id\":\"1869\",\"name\":\"万秀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1870,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"蝶山区\\\"]\",\"dataId\":\"\",\"id\":\"1870\",\"name\":\"蝶山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1871,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"长洲区\\\"]\",\"dataId\":\"\",\"id\":\"1871\",\"name\":\"长洲区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1872,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"苍梧县\\\"]\",\"dataId\":\"\",\"id\":\"1872\",\"name\":\"苍梧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1873,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"藤县\\\"]\",\"dataId\":\"\",\"id\":\"1873\",\"name\":\"藤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1874,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"蒙山县\\\"]\",\"dataId\":\"\",\"id\":\"1874\",\"name\":\"蒙山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1875,\"values\":{\"cityId\":\"221\",\"codes\":\"[\\\"岑溪市\\\"]\",\"dataId\":\"\",\"id\":\"1875\",\"name\":\"岑溪市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1876,\"values\":{\"cityId\":\"222\",\"codes\":\"[\\\"海城区\\\"]\",\"dataId\":\"\",\"id\":\"1876\",\"name\":\"海城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1877,\"values\":{\"cityId\":\"222\",\"codes\":\"[\\\"银海区\\\"]\",\"dataId\":\"\",\"id\":\"1877\",\"name\":\"银海区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1878,\"values\":{\"cityId\":\"222\",\"codes\":\"[\\\"铁山港区\\\"]\",\"dataId\":\"\",\"id\":\"1878\",\"name\":\"铁山港区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1879,\"values\":{\"cityId\":\"222\",\"codes\":\"[\\\"合浦县\\\"]\",\"dataId\":\"\",\"id\":\"1879\",\"name\":\"合浦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1880,\"values\":{\"cityId\":\"223\",\"codes\":\"[\\\"港口区\\\"]\",\"dataId\":\"\",\"id\":\"1880\",\"name\":\"港口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1881,\"values\":{\"cityId\":\"223\",\"codes\":\"[\\\"防城区\\\"]\",\"dataId\":\"\",\"id\":\"1881\",\"name\":\"防城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1882,\"values\":{\"cityId\":\"223\",\"codes\":\"[\\\"上思县\\\"]\",\"dataId\":\"\",\"id\":\"1882\",\"name\":\"上思县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1883,\"values\":{\"cityId\":\"223\",\"codes\":\"[\\\"东兴市\\\"]\",\"dataId\":\"\",\"id\":\"1883\",\"name\":\"东兴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1884,\"values\":{\"cityId\":\"224\",\"codes\":\"[\\\"钦南区\\\"]\",\"dataId\":\"\",\"id\":\"1884\",\"name\":\"钦南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1885,\"values\":{\"cityId\":\"224\",\"codes\":\"[\\\"钦北区\\\"]\",\"dataId\":\"\",\"id\":\"1885\",\"name\":\"钦北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1886,\"values\":{\"cityId\":\"224\",\"codes\":\"[\\\"灵山县\\\"]\",\"dataId\":\"\",\"id\":\"1886\",\"name\":\"灵山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1887,\"values\":{\"cityId\":\"224\",\"codes\":\"[\\\"浦北县\\\"]\",\"dataId\":\"\",\"id\":\"1887\",\"name\":\"浦北县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1888,\"values\":{\"cityId\":\"225\",\"codes\":\"[\\\"港北区\\\"]\",\"dataId\":\"\",\"id\":\"1888\",\"name\":\"港北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1889,\"values\":{\"cityId\":\"225\",\"codes\":\"[\\\"港南区\\\"]\",\"dataId\":\"\",\"id\":\"1889\",\"name\":\"港南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1890,\"values\":{\"cityId\":\"225\",\"codes\":\"[\\\"覃塘区\\\"]\",\"dataId\":\"\",\"id\":\"1890\",\"name\":\"覃塘区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1891,\"values\":{\"cityId\":\"225\",\"codes\":\"[\\\"平南县\\\"]\",\"dataId\":\"\",\"id\":\"1891\",\"name\":\"平南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1892,\"values\":{\"cityId\":\"225\",\"codes\":\"[\\\"桂平市\\\"]\",\"dataId\":\"\",\"id\":\"1892\",\"name\":\"桂平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1893,\"values\":{\"cityId\":\"226\",\"codes\":\"[\\\"玉州区\\\"]\",\"dataId\":\"\",\"id\":\"1893\",\"name\":\"玉州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1894,\"values\":{\"cityId\":\"226\",\"codes\":\"[\\\"容县\\\"]\",\"dataId\":\"\",\"id\":\"1894\",\"name\":\"容县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1895,\"values\":{\"cityId\":\"226\",\"codes\":\"[\\\"陆川县\\\"]\",\"dataId\":\"\",\"id\":\"1895\",\"name\":\"陆川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1896,\"values\":{\"cityId\":\"226\",\"codes\":\"[\\\"博白县\\\"]\",\"dataId\":\"\",\"id\":\"1896\",\"name\":\"博白县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1897,\"values\":{\"cityId\":\"226\",\"codes\":\"[\\\"兴业县\\\"]\",\"dataId\":\"\",\"id\":\"1897\",\"name\":\"兴业县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1898,\"values\":{\"cityId\":\"226\",\"codes\":\"[\\\"北流市\\\"]\",\"dataId\":\"\",\"id\":\"1898\",\"name\":\"北流市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1899,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"右江区\\\"]\",\"dataId\":\"\",\"id\":\"1899\",\"name\":\"右江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1900,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"田阳县\\\"]\",\"dataId\":\"\",\"id\":\"1900\",\"name\":\"田阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1901,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"田东县\\\"]\",\"dataId\":\"\",\"id\":\"1901\",\"name\":\"田东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1902,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"平果县\\\"]\",\"dataId\":\"\",\"id\":\"1902\",\"name\":\"平果县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1903,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"德保县\\\"]\",\"dataId\":\"\",\"id\":\"1903\",\"name\":\"德保县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1904,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"靖西县\\\"]\",\"dataId\":\"\",\"id\":\"1904\",\"name\":\"靖西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1905,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"那坡县\\\"]\",\"dataId\":\"\",\"id\":\"1905\",\"name\":\"那坡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1906,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"凌云县\\\"]\",\"dataId\":\"\",\"id\":\"1906\",\"name\":\"凌云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1907,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"乐业县\\\"]\",\"dataId\":\"\",\"id\":\"1907\",\"name\":\"乐业县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1908,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"田林县\\\"]\",\"dataId\":\"\",\"id\":\"1908\",\"name\":\"田林县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1909,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"西林县\\\"]\",\"dataId\":\"\",\"id\":\"1909\",\"name\":\"西林县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1910,\"values\":{\"cityId\":\"227\",\"codes\":\"[\\\"隆林各族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1910\",\"name\":\"隆林各族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1911,\"values\":{\"cityId\":\"228\",\"codes\":\"[\\\"八步区\\\"]\",\"dataId\":\"\",\"id\":\"1911\",\"name\":\"八步区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1912,\"values\":{\"cityId\":\"228\",\"codes\":\"[\\\"昭平县\\\"]\",\"dataId\":\"\",\"id\":\"1912\",\"name\":\"昭平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1913,\"values\":{\"cityId\":\"228\",\"codes\":\"[\\\"钟山县\\\"]\",\"dataId\":\"\",\"id\":\"1913\",\"name\":\"钟山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1914,\"values\":{\"cityId\":\"228\",\"codes\":\"[\\\"富川瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1914\",\"name\":\"富川瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1915,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"金城江区\\\"]\",\"dataId\":\"\",\"id\":\"1915\",\"name\":\"金城江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1916,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"南丹县\\\"]\",\"dataId\":\"\",\"id\":\"1916\",\"name\":\"南丹县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1917,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"天峨县\\\"]\",\"dataId\":\"\",\"id\":\"1917\",\"name\":\"天峨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1918,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"凤山县\\\"]\",\"dataId\":\"\",\"id\":\"1918\",\"name\":\"凤山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1919,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"东兰县\\\"]\",\"dataId\":\"\",\"id\":\"1919\",\"name\":\"东兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1920,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"罗城仫佬族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1920\",\"name\":\"罗城仫佬族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1921,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"环江毛南族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1921\",\"name\":\"环江毛南族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1922,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"巴马瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1922\",\"name\":\"巴马瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1923,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"都安瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1923\",\"name\":\"都安瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1924,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"大化瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1924\",\"name\":\"大化瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1925,\"values\":{\"cityId\":\"229\",\"codes\":\"[\\\"宜州市\\\"]\",\"dataId\":\"\",\"id\":\"1925\",\"name\":\"宜州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1926,\"values\":{\"cityId\":\"230\",\"codes\":\"[\\\"兴宾区\\\"]\",\"dataId\":\"\",\"id\":\"1926\",\"name\":\"兴宾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1927,\"values\":{\"cityId\":\"230\",\"codes\":\"[\\\"忻城县\\\"]\",\"dataId\":\"\",\"id\":\"1927\",\"name\":\"忻城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1928,\"values\":{\"cityId\":\"230\",\"codes\":\"[\\\"象州县\\\"]\",\"dataId\":\"\",\"id\":\"1928\",\"name\":\"象州县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1929,\"values\":{\"cityId\":\"230\",\"codes\":\"[\\\"武宣县\\\"]\",\"dataId\":\"\",\"id\":\"1929\",\"name\":\"武宣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1930,\"values\":{\"cityId\":\"230\",\"codes\":\"[\\\"金秀瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1930\",\"name\":\"金秀瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1931,\"values\":{\"cityId\":\"230\",\"codes\":\"[\\\"合山市\\\"]\",\"dataId\":\"\",\"id\":\"1931\",\"name\":\"合山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1932,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"江洲区\\\"]\",\"dataId\":\"\",\"id\":\"1932\",\"name\":\"江洲区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1933,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"扶绥县\\\"]\",\"dataId\":\"\",\"id\":\"1933\",\"name\":\"扶绥县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1934,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"宁明县\\\"]\",\"dataId\":\"\",\"id\":\"1934\",\"name\":\"宁明县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1935,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"龙州县\\\"]\",\"dataId\":\"\",\"id\":\"1935\",\"name\":\"龙州县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1936,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"大新县\\\"]\",\"dataId\":\"\",\"id\":\"1936\",\"name\":\"大新县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1937,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"天等县\\\"]\",\"dataId\":\"\",\"id\":\"1937\",\"name\":\"天等县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1938,\"values\":{\"cityId\":\"231\",\"codes\":\"[\\\"凭祥市\\\"]\",\"dataId\":\"\",\"id\":\"1938\",\"name\":\"凭祥市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1939,\"values\":{\"cityId\":\"232\",\"codes\":\"[\\\"秀英区\\\"]\",\"dataId\":\"\",\"id\":\"1939\",\"name\":\"秀英区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1940,\"values\":{\"cityId\":\"232\",\"codes\":\"[\\\"龙华区\\\"]\",\"dataId\":\"\",\"id\":\"1940\",\"name\":\"龙华区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1941,\"values\":{\"cityId\":\"232\",\"codes\":\"[\\\"琼山区\\\"]\",\"dataId\":\"\",\"id\":\"1941\",\"name\":\"琼山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1942,\"values\":{\"cityId\":\"232\",\"codes\":\"[\\\"美兰区\\\"]\",\"dataId\":\"\",\"id\":\"1942\",\"name\":\"美兰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1943,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"五指山市\\\"]\",\"dataId\":\"\",\"id\":\"1943\",\"name\":\"五指山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1944,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"琼海市\\\"]\",\"dataId\":\"\",\"id\":\"1944\",\"name\":\"琼海市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1945,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"儋州市\\\"]\",\"dataId\":\"\",\"id\":\"1945\",\"name\":\"儋州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1946,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"文昌市\\\"]\",\"dataId\":\"\",\"id\":\"1946\",\"name\":\"文昌市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1947,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"万宁市\\\"]\",\"dataId\":\"\",\"id\":\"1947\",\"name\":\"万宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1948,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"东方市\\\"]\",\"dataId\":\"\",\"id\":\"1948\",\"name\":\"东方市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1949,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"定安县\\\"]\",\"dataId\":\"\",\"id\":\"1949\",\"name\":\"定安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1950,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"屯昌县\\\"]\",\"dataId\":\"\",\"id\":\"1950\",\"name\":\"屯昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1951,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"澄迈县\\\"]\",\"dataId\":\"\",\"id\":\"1951\",\"name\":\"澄迈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1952,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"临高县\\\"]\",\"dataId\":\"\",\"id\":\"1952\",\"name\":\"临高县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1953,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"白沙黎族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1953\",\"name\":\"白沙黎族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1954,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"昌江黎族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1954\",\"name\":\"昌江黎族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1955,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"乐东黎族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1955\",\"name\":\"乐东黎族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1956,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"陵水黎族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1956\",\"name\":\"陵水黎族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1957,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"保亭黎族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1957\",\"name\":\"保亭黎族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1958,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"琼中黎族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1958\",\"name\":\"琼中黎族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1959,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"西沙群岛\\\"]\",\"dataId\":\"\",\"id\":\"1959\",\"name\":\"西沙群岛\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1960,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"南沙群岛\\\"]\",\"dataId\":\"\",\"id\":\"1960\",\"name\":\"南沙群岛\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1961,\"values\":{\"cityId\":\"233\",\"codes\":\"[\\\"中沙群岛的岛礁及其海域\\\"]\",\"dataId\":\"\",\"id\":\"1961\",\"name\":\"中沙群岛的岛礁及其海域\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1962,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"万州区\\\"]\",\"dataId\":\"\",\"id\":\"1962\",\"name\":\"万州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1963,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"涪陵区\\\"]\",\"dataId\":\"\",\"id\":\"1963\",\"name\":\"涪陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1964,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"渝中区\\\"]\",\"dataId\":\"\",\"id\":\"1964\",\"name\":\"渝中区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1965,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"大渡口区\\\"]\",\"dataId\":\"\",\"id\":\"1965\",\"name\":\"大渡口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1966,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"沙坪坝区\\\"]\",\"dataId\":\"\",\"id\":\"1966\",\"name\":\"沙坪坝区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1967,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"九龙坡区\\\"]\",\"dataId\":\"\",\"id\":\"1967\",\"name\":\"九龙坡区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1968,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"南岸区\\\"]\",\"dataId\":\"\",\"id\":\"1968\",\"name\":\"南岸区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1969,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"北碚区\\\"]\",\"dataId\":\"\",\"id\":\"1969\",\"name\":\"北碚区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1970,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"万盛区\\\"]\",\"dataId\":\"\",\"id\":\"1970\",\"name\":\"万盛区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1971,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"渝北区\\\"]\",\"dataId\":\"\",\"id\":\"1971\",\"name\":\"渝北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1972,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"巴南区\\\"]\",\"dataId\":\"\",\"id\":\"1972\",\"name\":\"巴南区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1973,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"黔江区\\\"]\",\"dataId\":\"\",\"id\":\"1973\",\"name\":\"黔江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1974,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"长寿区\\\"]\",\"dataId\":\"\",\"id\":\"1974\",\"name\":\"长寿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1975,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"綦江县\\\"]\",\"dataId\":\"\",\"id\":\"1975\",\"name\":\"綦江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1976,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"潼南县\\\"]\",\"dataId\":\"\",\"id\":\"1976\",\"name\":\"潼南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1977,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"铜梁县\\\"]\",\"dataId\":\"\",\"id\":\"1977\",\"name\":\"铜梁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1978,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"大足县\\\"]\",\"dataId\":\"\",\"id\":\"1978\",\"name\":\"大足县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1979,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"荣昌县\\\"]\",\"dataId\":\"\",\"id\":\"1979\",\"name\":\"荣昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1980,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"璧山县\\\"]\",\"dataId\":\"\",\"id\":\"1980\",\"name\":\"璧山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1981,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"梁平县\\\"]\",\"dataId\":\"\",\"id\":\"1981\",\"name\":\"梁平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1982,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"城口县\\\"]\",\"dataId\":\"\",\"id\":\"1982\",\"name\":\"城口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1983,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"丰都县\\\"]\",\"dataId\":\"\",\"id\":\"1983\",\"name\":\"丰都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1984,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"垫江县\\\"]\",\"dataId\":\"\",\"id\":\"1984\",\"name\":\"垫江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1985,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"武隆县\\\"]\",\"dataId\":\"\",\"id\":\"1985\",\"name\":\"武隆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1986,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"忠县\\\"]\",\"dataId\":\"\",\"id\":\"1986\",\"name\":\"忠县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1987,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"开县\\\"]\",\"dataId\":\"\",\"id\":\"1987\",\"name\":\"开县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1988,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"云阳县\\\"]\",\"dataId\":\"\",\"id\":\"1988\",\"name\":\"云阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1989,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"奉节县\\\"]\",\"dataId\":\"\",\"id\":\"1989\",\"name\":\"奉节县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1990,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"巫山县\\\"]\",\"dataId\":\"\",\"id\":\"1990\",\"name\":\"巫山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1991,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"巫溪县\\\"]\",\"dataId\":\"\",\"id\":\"1991\",\"name\":\"巫溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1992,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"石柱土家族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1992\",\"name\":\"石柱土家族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1993,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"秀山土家族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1993\",\"name\":\"秀山土家族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1994,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"酉阳土家族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1994\",\"name\":\"酉阳土家族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1995,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"彭水苗族土家族自治县\\\"]\",\"dataId\":\"\",\"id\":\"1995\",\"name\":\"彭水苗族土家族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1996,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"江津市\\\"]\",\"dataId\":\"\",\"id\":\"1996\",\"name\":\"江津市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1997,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"合川市\\\"]\",\"dataId\":\"\",\"id\":\"1997\",\"name\":\"合川市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1998,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"永川市\\\"]\",\"dataId\":\"\",\"id\":\"1998\",\"name\":\"永川市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":1999,\"values\":{\"cityId\":\"234\",\"codes\":\"[\\\"南川市\\\"]\",\"dataId\":\"\",\"id\":\"1999\",\"name\":\"南川市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2000,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"锦江区\\\"]\",\"dataId\":\"\",\"id\":\"2000\",\"name\":\"锦江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2001,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"青羊区\\\"]\",\"dataId\":\"\",\"id\":\"2001\",\"name\":\"青羊区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2002,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"金牛区\\\"]\",\"dataId\":\"\",\"id\":\"2002\",\"name\":\"金牛区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2003,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"武侯区\\\"]\",\"dataId\":\"\",\"id\":\"2003\",\"name\":\"武侯区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2004,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"成华区\\\"]\",\"dataId\":\"\",\"id\":\"2004\",\"name\":\"成华区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2005,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"龙泉驿区\\\"]\",\"dataId\":\"\",\"id\":\"2005\",\"name\":\"龙泉驿区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2006,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"青白江区\\\"]\",\"dataId\":\"\",\"id\":\"2006\",\"name\":\"青白江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2007,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"新都区\\\"]\",\"dataId\":\"\",\"id\":\"2007\",\"name\":\"新都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2008,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"温江区\\\"]\",\"dataId\":\"\",\"id\":\"2008\",\"name\":\"温江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2009,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"金堂县\\\"]\",\"dataId\":\"\",\"id\":\"2009\",\"name\":\"金堂县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2010,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"双流县\\\"]\",\"dataId\":\"\",\"id\":\"2010\",\"name\":\"双流县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2011,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"郫县\\\"]\",\"dataId\":\"\",\"id\":\"2011\",\"name\":\"郫县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2012,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"大邑县\\\"]\",\"dataId\":\"\",\"id\":\"2012\",\"name\":\"大邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2013,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"蒲江县\\\"]\",\"dataId\":\"\",\"id\":\"2013\",\"name\":\"蒲江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2014,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"新津县\\\"]\",\"dataId\":\"\",\"id\":\"2014\",\"name\":\"新津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2015,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"都江堰市\\\"]\",\"dataId\":\"\",\"id\":\"2015\",\"name\":\"都江堰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2016,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"彭州市\\\"]\",\"dataId\":\"\",\"id\":\"2016\",\"name\":\"彭州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2017,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"邛崃市\\\"]\",\"dataId\":\"\",\"id\":\"2017\",\"name\":\"邛崃市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2018,\"values\":{\"cityId\":\"235\",\"codes\":\"[\\\"崇州市\\\"]\",\"dataId\":\"\",\"id\":\"2018\",\"name\":\"崇州市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2019,\"values\":{\"cityId\":\"236\",\"codes\":\"[\\\"自流井区\\\"]\",\"dataId\":\"\",\"id\":\"2019\",\"name\":\"自流井区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2020,\"values\":{\"cityId\":\"236\",\"codes\":\"[\\\"贡井区\\\"]\",\"dataId\":\"\",\"id\":\"2020\",\"name\":\"贡井区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2021,\"values\":{\"cityId\":\"236\",\"codes\":\"[\\\"大安区\\\"]\",\"dataId\":\"\",\"id\":\"2021\",\"name\":\"大安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2022,\"values\":{\"cityId\":\"236\",\"codes\":\"[\\\"沿滩区\\\"]\",\"dataId\":\"\",\"id\":\"2022\",\"name\":\"沿滩区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2023,\"values\":{\"cityId\":\"236\",\"codes\":\"[\\\"荣县\\\"]\",\"dataId\":\"\",\"id\":\"2023\",\"name\":\"荣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2024,\"values\":{\"cityId\":\"236\",\"codes\":\"[\\\"富顺县\\\"]\",\"dataId\":\"\",\"id\":\"2024\",\"name\":\"富顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2025,\"values\":{\"cityId\":\"237\",\"codes\":\"[\\\"东区\\\"]\",\"dataId\":\"\",\"id\":\"2025\",\"name\":\"东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2026,\"values\":{\"cityId\":\"237\",\"codes\":\"[\\\"西区\\\"]\",\"dataId\":\"\",\"id\":\"2026\",\"name\":\"西区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2027,\"values\":{\"cityId\":\"237\",\"codes\":\"[\\\"仁和区\\\"]\",\"dataId\":\"\",\"id\":\"2027\",\"name\":\"仁和区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2028,\"values\":{\"cityId\":\"237\",\"codes\":\"[\\\"米易县\\\"]\",\"dataId\":\"\",\"id\":\"2028\",\"name\":\"米易县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2029,\"values\":{\"cityId\":\"237\",\"codes\":\"[\\\"盐边县\\\"]\",\"dataId\":\"\",\"id\":\"2029\",\"name\":\"盐边县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2030,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"江阳区\\\"]\",\"dataId\":\"\",\"id\":\"2030\",\"name\":\"江阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2031,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"纳溪区\\\"]\",\"dataId\":\"\",\"id\":\"2031\",\"name\":\"纳溪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2032,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"龙马潭区\\\"]\",\"dataId\":\"\",\"id\":\"2032\",\"name\":\"龙马潭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2033,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"泸县\\\"]\",\"dataId\":\"\",\"id\":\"2033\",\"name\":\"泸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2034,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"合江县\\\"]\",\"dataId\":\"\",\"id\":\"2034\",\"name\":\"合江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2035,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"叙永县\\\"]\",\"dataId\":\"\",\"id\":\"2035\",\"name\":\"叙永县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2036,\"values\":{\"cityId\":\"238\",\"codes\":\"[\\\"古蔺县\\\"]\",\"dataId\":\"\",\"id\":\"2036\",\"name\":\"古蔺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2037,\"values\":{\"cityId\":\"239\",\"codes\":\"[\\\"旌阳区\\\"]\",\"dataId\":\"\",\"id\":\"2037\",\"name\":\"旌阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2038,\"values\":{\"cityId\":\"239\",\"codes\":\"[\\\"中江县\\\"]\",\"dataId\":\"\",\"id\":\"2038\",\"name\":\"中江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2039,\"values\":{\"cityId\":\"239\",\"codes\":\"[\\\"罗江县\\\"]\",\"dataId\":\"\",\"id\":\"2039\",\"name\":\"罗江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2040,\"values\":{\"cityId\":\"239\",\"codes\":\"[\\\"广汉市\\\"]\",\"dataId\":\"\",\"id\":\"2040\",\"name\":\"广汉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2041,\"values\":{\"cityId\":\"239\",\"codes\":\"[\\\"什邡市\\\"]\",\"dataId\":\"\",\"id\":\"2041\",\"name\":\"什邡市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2042,\"values\":{\"cityId\":\"239\",\"codes\":\"[\\\"绵竹市\\\"]\",\"dataId\":\"\",\"id\":\"2042\",\"name\":\"绵竹市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2043,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"涪城区\\\"]\",\"dataId\":\"\",\"id\":\"2043\",\"name\":\"涪城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2044,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"游仙区\\\"]\",\"dataId\":\"\",\"id\":\"2044\",\"name\":\"游仙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2045,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"三台县\\\"]\",\"dataId\":\"\",\"id\":\"2045\",\"name\":\"三台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2046,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"盐亭县\\\"]\",\"dataId\":\"\",\"id\":\"2046\",\"name\":\"盐亭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2047,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"安县\\\"]\",\"dataId\":\"\",\"id\":\"2047\",\"name\":\"安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2048,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"梓潼县\\\"]\",\"dataId\":\"\",\"id\":\"2048\",\"name\":\"梓潼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2049,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"北川羌族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2049\",\"name\":\"北川羌族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2050,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"平武县\\\"]\",\"dataId\":\"\",\"id\":\"2050\",\"name\":\"平武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2051,\"values\":{\"cityId\":\"240\",\"codes\":\"[\\\"江油市\\\"]\",\"dataId\":\"\",\"id\":\"2051\",\"name\":\"江油市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2052,\"values\":{\"cityId\":\"241\",\"codes\":\"[\\\"元坝区\\\"]\",\"dataId\":\"\",\"id\":\"2052\",\"name\":\"元坝区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2053,\"values\":{\"cityId\":\"241\",\"codes\":\"[\\\"朝天区\\\"]\",\"dataId\":\"\",\"id\":\"2053\",\"name\":\"朝天区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2054,\"values\":{\"cityId\":\"241\",\"codes\":\"[\\\"旺苍县\\\"]\",\"dataId\":\"\",\"id\":\"2054\",\"name\":\"旺苍县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2055,\"values\":{\"cityId\":\"241\",\"codes\":\"[\\\"青川县\\\"]\",\"dataId\":\"\",\"id\":\"2055\",\"name\":\"青川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2056,\"values\":{\"cityId\":\"241\",\"codes\":\"[\\\"剑阁县\\\"]\",\"dataId\":\"\",\"id\":\"2056\",\"name\":\"剑阁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2057,\"values\":{\"cityId\":\"241\",\"codes\":\"[\\\"苍溪县\\\"]\",\"dataId\":\"\",\"id\":\"2057\",\"name\":\"苍溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2058,\"values\":{\"cityId\":\"242\",\"codes\":\"[\\\"船山区\\\"]\",\"dataId\":\"\",\"id\":\"2058\",\"name\":\"船山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2059,\"values\":{\"cityId\":\"242\",\"codes\":\"[\\\"安居区\\\"]\",\"dataId\":\"\",\"id\":\"2059\",\"name\":\"安居区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2060,\"values\":{\"cityId\":\"242\",\"codes\":\"[\\\"蓬溪县\\\"]\",\"dataId\":\"\",\"id\":\"2060\",\"name\":\"蓬溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2061,\"values\":{\"cityId\":\"242\",\"codes\":\"[\\\"射洪县\\\"]\",\"dataId\":\"\",\"id\":\"2061\",\"name\":\"射洪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2062,\"values\":{\"cityId\":\"242\",\"codes\":\"[\\\"大英县\\\"]\",\"dataId\":\"\",\"id\":\"2062\",\"name\":\"大英县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2063,\"values\":{\"cityId\":\"243\",\"codes\":\"[\\\"东兴区\\\"]\",\"dataId\":\"\",\"id\":\"2063\",\"name\":\"东兴区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2064,\"values\":{\"cityId\":\"243\",\"codes\":\"[\\\"威远县\\\"]\",\"dataId\":\"\",\"id\":\"2064\",\"name\":\"威远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2065,\"values\":{\"cityId\":\"243\",\"codes\":\"[\\\"资中县\\\"]\",\"dataId\":\"\",\"id\":\"2065\",\"name\":\"资中县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2066,\"values\":{\"cityId\":\"243\",\"codes\":\"[\\\"隆昌县\\\"]\",\"dataId\":\"\",\"id\":\"2066\",\"name\":\"隆昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2067,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"沙湾区\\\"]\",\"dataId\":\"\",\"id\":\"2067\",\"name\":\"沙湾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2068,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"五通桥区\\\"]\",\"dataId\":\"\",\"id\":\"2068\",\"name\":\"五通桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2069,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"金口河区\\\"]\",\"dataId\":\"\",\"id\":\"2069\",\"name\":\"金口河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2070,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"犍为县\\\"]\",\"dataId\":\"\",\"id\":\"2070\",\"name\":\"犍为县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2071,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"井研县\\\"]\",\"dataId\":\"\",\"id\":\"2071\",\"name\":\"井研县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2072,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"夹江县\\\"]\",\"dataId\":\"\",\"id\":\"2072\",\"name\":\"夹江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2073,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"沐川县\\\"]\",\"dataId\":\"\",\"id\":\"2073\",\"name\":\"沐川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2074,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"峨边彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2074\",\"name\":\"峨边彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2075,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"马边彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2075\",\"name\":\"马边彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2076,\"values\":{\"cityId\":\"244\",\"codes\":\"[\\\"峨眉山市\\\"]\",\"dataId\":\"\",\"id\":\"2076\",\"name\":\"峨眉山市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2077,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"顺庆区\\\"]\",\"dataId\":\"\",\"id\":\"2077\",\"name\":\"顺庆区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2078,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"高坪区\\\"]\",\"dataId\":\"\",\"id\":\"2078\",\"name\":\"高坪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2079,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"嘉陵区\\\"]\",\"dataId\":\"\",\"id\":\"2079\",\"name\":\"嘉陵区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2080,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"南部县\\\"]\",\"dataId\":\"\",\"id\":\"2080\",\"name\":\"南部县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2081,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"营山县\\\"]\",\"dataId\":\"\",\"id\":\"2081\",\"name\":\"营山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2082,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"蓬安县\\\"]\",\"dataId\":\"\",\"id\":\"2082\",\"name\":\"蓬安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2083,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"仪陇县\\\"]\",\"dataId\":\"\",\"id\":\"2083\",\"name\":\"仪陇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2084,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"西充县\\\"]\",\"dataId\":\"\",\"id\":\"2084\",\"name\":\"西充县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2085,\"values\":{\"cityId\":\"245\",\"codes\":\"[\\\"阆中市\\\"]\",\"dataId\":\"\",\"id\":\"2085\",\"name\":\"阆中市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2086,\"values\":{\"cityId\":\"246\",\"codes\":\"[\\\"东坡区\\\"]\",\"dataId\":\"\",\"id\":\"2086\",\"name\":\"东坡区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2087,\"values\":{\"cityId\":\"246\",\"codes\":\"[\\\"仁寿县\\\"]\",\"dataId\":\"\",\"id\":\"2087\",\"name\":\"仁寿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2088,\"values\":{\"cityId\":\"246\",\"codes\":\"[\\\"彭山县\\\"]\",\"dataId\":\"\",\"id\":\"2088\",\"name\":\"彭山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2089,\"values\":{\"cityId\":\"246\",\"codes\":\"[\\\"洪雅县\\\"]\",\"dataId\":\"\",\"id\":\"2089\",\"name\":\"洪雅县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2090,\"values\":{\"cityId\":\"246\",\"codes\":\"[\\\"丹棱县\\\"]\",\"dataId\":\"\",\"id\":\"2090\",\"name\":\"丹棱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2091,\"values\":{\"cityId\":\"246\",\"codes\":\"[\\\"青神县\\\"]\",\"dataId\":\"\",\"id\":\"2091\",\"name\":\"青神县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2092,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"翠屏区\\\"]\",\"dataId\":\"\",\"id\":\"2092\",\"name\":\"翠屏区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2093,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"宜宾县\\\"]\",\"dataId\":\"\",\"id\":\"2093\",\"name\":\"宜宾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2094,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"南溪县\\\"]\",\"dataId\":\"\",\"id\":\"2094\",\"name\":\"南溪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2095,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"江安县\\\"]\",\"dataId\":\"\",\"id\":\"2095\",\"name\":\"江安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2096,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"长宁县\\\"]\",\"dataId\":\"\",\"id\":\"2096\",\"name\":\"长宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2097,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"高县\\\"]\",\"dataId\":\"\",\"id\":\"2097\",\"name\":\"高县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2098,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"珙县\\\"]\",\"dataId\":\"\",\"id\":\"2098\",\"name\":\"珙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2099,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"筠连县\\\"]\",\"dataId\":\"\",\"id\":\"2099\",\"name\":\"筠连县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2100,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"兴文县\\\"]\",\"dataId\":\"\",\"id\":\"2100\",\"name\":\"兴文县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2101,\"values\":{\"cityId\":\"247\",\"codes\":\"[\\\"屏山县\\\"]\",\"dataId\":\"\",\"id\":\"2101\",\"name\":\"屏山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2102,\"values\":{\"cityId\":\"248\",\"codes\":\"[\\\"广安区\\\"]\",\"dataId\":\"\",\"id\":\"2102\",\"name\":\"广安区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2103,\"values\":{\"cityId\":\"248\",\"codes\":\"[\\\"岳池县\\\"]\",\"dataId\":\"\",\"id\":\"2103\",\"name\":\"岳池县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2104,\"values\":{\"cityId\":\"248\",\"codes\":\"[\\\"武胜县\\\"]\",\"dataId\":\"\",\"id\":\"2104\",\"name\":\"武胜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2105,\"values\":{\"cityId\":\"248\",\"codes\":\"[\\\"邻水县\\\"]\",\"dataId\":\"\",\"id\":\"2105\",\"name\":\"邻水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2106,\"values\":{\"cityId\":\"248\",\"codes\":\"[\\\"华蓥市\\\"]\",\"dataId\":\"\",\"id\":\"2106\",\"name\":\"华蓥市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2107,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"通川区\\\"]\",\"dataId\":\"\",\"id\":\"2107\",\"name\":\"通川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2108,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"达县\\\"]\",\"dataId\":\"\",\"id\":\"2108\",\"name\":\"达县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2109,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"宣汉县\\\"]\",\"dataId\":\"\",\"id\":\"2109\",\"name\":\"宣汉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2110,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"开江县\\\"]\",\"dataId\":\"\",\"id\":\"2110\",\"name\":\"开江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2111,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"大竹县\\\"]\",\"dataId\":\"\",\"id\":\"2111\",\"name\":\"大竹县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2112,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"渠县\\\"]\",\"dataId\":\"\",\"id\":\"2112\",\"name\":\"渠县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2113,\"values\":{\"cityId\":\"249\",\"codes\":\"[\\\"万源市\\\"]\",\"dataId\":\"\",\"id\":\"2113\",\"name\":\"万源市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2114,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"雨城区\\\"]\",\"dataId\":\"\",\"id\":\"2114\",\"name\":\"雨城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2115,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"名山县\\\"]\",\"dataId\":\"\",\"id\":\"2115\",\"name\":\"名山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2116,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"荥经县\\\"]\",\"dataId\":\"\",\"id\":\"2116\",\"name\":\"荥经县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2117,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"汉源县\\\"]\",\"dataId\":\"\",\"id\":\"2117\",\"name\":\"汉源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2118,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"石棉县\\\"]\",\"dataId\":\"\",\"id\":\"2118\",\"name\":\"石棉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2119,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"天全县\\\"]\",\"dataId\":\"\",\"id\":\"2119\",\"name\":\"天全县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2120,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"芦山县\\\"]\",\"dataId\":\"\",\"id\":\"2120\",\"name\":\"芦山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2121,\"values\":{\"cityId\":\"250\",\"codes\":\"[\\\"宝兴县\\\"]\",\"dataId\":\"\",\"id\":\"2121\",\"name\":\"宝兴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2122,\"values\":{\"cityId\":\"251\",\"codes\":\"[\\\"巴州区\\\"]\",\"dataId\":\"\",\"id\":\"2122\",\"name\":\"巴州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2123,\"values\":{\"cityId\":\"251\",\"codes\":\"[\\\"通江县\\\"]\",\"dataId\":\"\",\"id\":\"2123\",\"name\":\"通江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2124,\"values\":{\"cityId\":\"251\",\"codes\":\"[\\\"南江县\\\"]\",\"dataId\":\"\",\"id\":\"2124\",\"name\":\"南江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2125,\"values\":{\"cityId\":\"251\",\"codes\":\"[\\\"平昌县\\\"]\",\"dataId\":\"\",\"id\":\"2125\",\"name\":\"平昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2126,\"values\":{\"cityId\":\"252\",\"codes\":\"[\\\"雁江区\\\"]\",\"dataId\":\"\",\"id\":\"2126\",\"name\":\"雁江区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2127,\"values\":{\"cityId\":\"252\",\"codes\":\"[\\\"安岳县\\\"]\",\"dataId\":\"\",\"id\":\"2127\",\"name\":\"安岳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2128,\"values\":{\"cityId\":\"252\",\"codes\":\"[\\\"乐至县\\\"]\",\"dataId\":\"\",\"id\":\"2128\",\"name\":\"乐至县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2129,\"values\":{\"cityId\":\"252\",\"codes\":\"[\\\"简阳市\\\"]\",\"dataId\":\"\",\"id\":\"2129\",\"name\":\"简阳市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2130,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"汶川县\\\"]\",\"dataId\":\"\",\"id\":\"2130\",\"name\":\"汶川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2131,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"理县\\\"]\",\"dataId\":\"\",\"id\":\"2131\",\"name\":\"理县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2132,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"茂县\\\"]\",\"dataId\":\"\",\"id\":\"2132\",\"name\":\"茂县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2133,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"松潘县\\\"]\",\"dataId\":\"\",\"id\":\"2133\",\"name\":\"松潘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2134,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"九寨沟县\\\"]\",\"dataId\":\"\",\"id\":\"2134\",\"name\":\"九寨沟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2135,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"金川县\\\"]\",\"dataId\":\"\",\"id\":\"2135\",\"name\":\"金川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2136,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"小金县\\\"]\",\"dataId\":\"\",\"id\":\"2136\",\"name\":\"小金县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2137,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"黑水县\\\"]\",\"dataId\":\"\",\"id\":\"2137\",\"name\":\"黑水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2138,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"马尔康县\\\"]\",\"dataId\":\"\",\"id\":\"2138\",\"name\":\"马尔康县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2139,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"壤塘县\\\"]\",\"dataId\":\"\",\"id\":\"2139\",\"name\":\"壤塘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2140,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"阿坝县\\\"]\",\"dataId\":\"\",\"id\":\"2140\",\"name\":\"阿坝县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2141,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"若尔盖县\\\"]\",\"dataId\":\"\",\"id\":\"2141\",\"name\":\"若尔盖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2142,\"values\":{\"cityId\":\"253\",\"codes\":\"[\\\"红原县\\\"]\",\"dataId\":\"\",\"id\":\"2142\",\"name\":\"红原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2143,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"康定县\\\"]\",\"dataId\":\"\",\"id\":\"2143\",\"name\":\"康定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2144,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"泸定县\\\"]\",\"dataId\":\"\",\"id\":\"2144\",\"name\":\"泸定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2145,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"丹巴县\\\"]\",\"dataId\":\"\",\"id\":\"2145\",\"name\":\"丹巴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2146,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"九龙县\\\"]\",\"dataId\":\"\",\"id\":\"2146\",\"name\":\"九龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2147,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"雅江县\\\"]\",\"dataId\":\"\",\"id\":\"2147\",\"name\":\"雅江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2148,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"道孚县\\\"]\",\"dataId\":\"\",\"id\":\"2148\",\"name\":\"道孚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2149,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"炉霍县\\\"]\",\"dataId\":\"\",\"id\":\"2149\",\"name\":\"炉霍县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2150,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"甘孜县\\\"]\",\"dataId\":\"\",\"id\":\"2150\",\"name\":\"甘孜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2151,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"新龙县\\\"]\",\"dataId\":\"\",\"id\":\"2151\",\"name\":\"新龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2152,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"德格县\\\"]\",\"dataId\":\"\",\"id\":\"2152\",\"name\":\"德格县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2153,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"白玉县\\\"]\",\"dataId\":\"\",\"id\":\"2153\",\"name\":\"白玉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2154,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"石渠县\\\"]\",\"dataId\":\"\",\"id\":\"2154\",\"name\":\"石渠县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2155,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"色达县\\\"]\",\"dataId\":\"\",\"id\":\"2155\",\"name\":\"色达县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2156,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"理塘县\\\"]\",\"dataId\":\"\",\"id\":\"2156\",\"name\":\"理塘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2157,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"巴塘县\\\"]\",\"dataId\":\"\",\"id\":\"2157\",\"name\":\"巴塘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2158,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"乡城县\\\"]\",\"dataId\":\"\",\"id\":\"2158\",\"name\":\"乡城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2159,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"稻城县\\\"]\",\"dataId\":\"\",\"id\":\"2159\",\"name\":\"稻城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2160,\"values\":{\"cityId\":\"254\",\"codes\":\"[\\\"得荣县\\\"]\",\"dataId\":\"\",\"id\":\"2160\",\"name\":\"得荣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2161,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"西昌市\\\"]\",\"dataId\":\"\",\"id\":\"2161\",\"name\":\"西昌市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2162,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"木里藏族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2162\",\"name\":\"木里藏族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2163,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"盐源县\\\"]\",\"dataId\":\"\",\"id\":\"2163\",\"name\":\"盐源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2164,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"德昌县\\\"]\",\"dataId\":\"\",\"id\":\"2164\",\"name\":\"德昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2165,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"会理县\\\"]\",\"dataId\":\"\",\"id\":\"2165\",\"name\":\"会理县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2166,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"会东县\\\"]\",\"dataId\":\"\",\"id\":\"2166\",\"name\":\"会东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2167,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"宁南县\\\"]\",\"dataId\":\"\",\"id\":\"2167\",\"name\":\"宁南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2168,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"普格县\\\"]\",\"dataId\":\"\",\"id\":\"2168\",\"name\":\"普格县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2169,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"布拖县\\\"]\",\"dataId\":\"\",\"id\":\"2169\",\"name\":\"布拖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2170,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"金阳县\\\"]\",\"dataId\":\"\",\"id\":\"2170\",\"name\":\"金阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2171,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"昭觉县\\\"]\",\"dataId\":\"\",\"id\":\"2171\",\"name\":\"昭觉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2172,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"喜德县\\\"]\",\"dataId\":\"\",\"id\":\"2172\",\"name\":\"喜德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2173,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"冕宁县\\\"]\",\"dataId\":\"\",\"id\":\"2173\",\"name\":\"冕宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2174,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"越西县\\\"]\",\"dataId\":\"\",\"id\":\"2174\",\"name\":\"越西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2175,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"甘洛县\\\"]\",\"dataId\":\"\",\"id\":\"2175\",\"name\":\"甘洛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2176,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"美姑县\\\"]\",\"dataId\":\"\",\"id\":\"2176\",\"name\":\"美姑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2177,\"values\":{\"cityId\":\"255\",\"codes\":\"[\\\"雷波县\\\"]\",\"dataId\":\"\",\"id\":\"2177\",\"name\":\"雷波县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2178,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"南明区\\\"]\",\"dataId\":\"\",\"id\":\"2178\",\"name\":\"南明区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2179,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"云岩区\\\"]\",\"dataId\":\"\",\"id\":\"2179\",\"name\":\"云岩区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2180,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"花溪区\\\"]\",\"dataId\":\"\",\"id\":\"2180\",\"name\":\"花溪区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2181,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"乌当区\\\"]\",\"dataId\":\"\",\"id\":\"2181\",\"name\":\"乌当区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2182,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"小河区\\\"]\",\"dataId\":\"\",\"id\":\"2182\",\"name\":\"小河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2183,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"开阳县\\\"]\",\"dataId\":\"\",\"id\":\"2183\",\"name\":\"开阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2184,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"息烽县\\\"]\",\"dataId\":\"\",\"id\":\"2184\",\"name\":\"息烽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2185,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"修文县\\\"]\",\"dataId\":\"\",\"id\":\"2185\",\"name\":\"修文县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2186,\"values\":{\"cityId\":\"256\",\"codes\":\"[\\\"清镇市\\\"]\",\"dataId\":\"\",\"id\":\"2186\",\"name\":\"清镇市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2187,\"values\":{\"cityId\":\"257\",\"codes\":\"[\\\"钟山区\\\"]\",\"dataId\":\"\",\"id\":\"2187\",\"name\":\"钟山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2188,\"values\":{\"cityId\":\"257\",\"codes\":\"[\\\"六枝特区\\\"]\",\"dataId\":\"\",\"id\":\"2188\",\"name\":\"六枝特区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2189,\"values\":{\"cityId\":\"257\",\"codes\":\"[\\\"水城县\\\"]\",\"dataId\":\"\",\"id\":\"2189\",\"name\":\"水城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2190,\"values\":{\"cityId\":\"257\",\"codes\":\"[\\\"盘县\\\"]\",\"dataId\":\"\",\"id\":\"2190\",\"name\":\"盘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2191,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"红花岗区\\\"]\",\"dataId\":\"\",\"id\":\"2191\",\"name\":\"红花岗区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2192,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"汇川区\\\"]\",\"dataId\":\"\",\"id\":\"2192\",\"name\":\"汇川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2193,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"遵义县\\\"]\",\"dataId\":\"\",\"id\":\"2193\",\"name\":\"遵义县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2194,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"桐梓县\\\"]\",\"dataId\":\"\",\"id\":\"2194\",\"name\":\"桐梓县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2195,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"绥阳县\\\"]\",\"dataId\":\"\",\"id\":\"2195\",\"name\":\"绥阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2196,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"正安县\\\"]\",\"dataId\":\"\",\"id\":\"2196\",\"name\":\"正安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2197,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"道真仡佬族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2197\",\"name\":\"道真仡佬族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2198,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"务川仡佬族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2198\",\"name\":\"务川仡佬族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2199,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"凤冈县\\\"]\",\"dataId\":\"\",\"id\":\"2199\",\"name\":\"凤冈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2200,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"湄潭县\\\"]\",\"dataId\":\"\",\"id\":\"2200\",\"name\":\"湄潭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2201,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"余庆县\\\"]\",\"dataId\":\"\",\"id\":\"2201\",\"name\":\"余庆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2202,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"习水县\\\"]\",\"dataId\":\"\",\"id\":\"2202\",\"name\":\"习水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2203,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"赤水市\\\"]\",\"dataId\":\"\",\"id\":\"2203\",\"name\":\"赤水市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2204,\"values\":{\"cityId\":\"258\",\"codes\":\"[\\\"仁怀市\\\"]\",\"dataId\":\"\",\"id\":\"2204\",\"name\":\"仁怀市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2205,\"values\":{\"cityId\":\"259\",\"codes\":\"[\\\"西秀区\\\"]\",\"dataId\":\"\",\"id\":\"2205\",\"name\":\"西秀区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2206,\"values\":{\"cityId\":\"259\",\"codes\":\"[\\\"平坝县\\\"]\",\"dataId\":\"\",\"id\":\"2206\",\"name\":\"平坝县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2207,\"values\":{\"cityId\":\"259\",\"codes\":\"[\\\"普定县\\\"]\",\"dataId\":\"\",\"id\":\"2207\",\"name\":\"普定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2208,\"values\":{\"cityId\":\"259\",\"codes\":\"[\\\"镇宁布依族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2208\",\"name\":\"镇宁布依族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2209,\"values\":{\"cityId\":\"259\",\"codes\":\"[\\\"关岭布依族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2209\",\"name\":\"关岭布依族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2210,\"values\":{\"cityId\":\"259\",\"codes\":\"[\\\"紫云苗族布依族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2210\",\"name\":\"紫云苗族布依族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2211,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"铜仁市\\\"]\",\"dataId\":\"\",\"id\":\"2211\",\"name\":\"铜仁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2212,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"江口县\\\"]\",\"dataId\":\"\",\"id\":\"2212\",\"name\":\"江口县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2213,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"玉屏侗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2213\",\"name\":\"玉屏侗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2214,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"石阡县\\\"]\",\"dataId\":\"\",\"id\":\"2214\",\"name\":\"石阡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2215,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"思南县\\\"]\",\"dataId\":\"\",\"id\":\"2215\",\"name\":\"思南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2216,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"印江土家族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2216\",\"name\":\"印江土家族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2217,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"德江县\\\"]\",\"dataId\":\"\",\"id\":\"2217\",\"name\":\"德江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2218,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"沿河土家族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2218\",\"name\":\"沿河土家族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2219,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"松桃苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2219\",\"name\":\"松桃苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2220,\"values\":{\"cityId\":\"260\",\"codes\":\"[\\\"万山特区\\\"]\",\"dataId\":\"\",\"id\":\"2220\",\"name\":\"万山特区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2221,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"兴义市\\\"]\",\"dataId\":\"\",\"id\":\"2221\",\"name\":\"兴义市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2222,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"兴仁县\\\"]\",\"dataId\":\"\",\"id\":\"2222\",\"name\":\"兴仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2223,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"普安县\\\"]\",\"dataId\":\"\",\"id\":\"2223\",\"name\":\"普安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2224,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"晴隆县\\\"]\",\"dataId\":\"\",\"id\":\"2224\",\"name\":\"晴隆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2225,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"贞丰县\\\"]\",\"dataId\":\"\",\"id\":\"2225\",\"name\":\"贞丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2226,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"望谟县\\\"]\",\"dataId\":\"\",\"id\":\"2226\",\"name\":\"望谟县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2227,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"册亨县\\\"]\",\"dataId\":\"\",\"id\":\"2227\",\"name\":\"册亨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2228,\"values\":{\"cityId\":\"261\",\"codes\":\"[\\\"安龙县\\\"]\",\"dataId\":\"\",\"id\":\"2228\",\"name\":\"安龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2229,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"毕节市\\\"]\",\"dataId\":\"\",\"id\":\"2229\",\"name\":\"毕节市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2230,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"大方县\\\"]\",\"dataId\":\"\",\"id\":\"2230\",\"name\":\"大方县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2231,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"黔西县\\\"]\",\"dataId\":\"\",\"id\":\"2231\",\"name\":\"黔西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2232,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"金沙县\\\"]\",\"dataId\":\"\",\"id\":\"2232\",\"name\":\"金沙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2233,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"织金县\\\"]\",\"dataId\":\"\",\"id\":\"2233\",\"name\":\"织金县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2234,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"纳雍县\\\"]\",\"dataId\":\"\",\"id\":\"2234\",\"name\":\"纳雍县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2235,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"威宁彝族回族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2235\",\"name\":\"威宁彝族回族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2236,\"values\":{\"cityId\":\"262\",\"codes\":\"[\\\"赫章县\\\"]\",\"dataId\":\"\",\"id\":\"2236\",\"name\":\"赫章县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2237,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"凯里市\\\"]\",\"dataId\":\"\",\"id\":\"2237\",\"name\":\"凯里市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2238,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"黄平县\\\"]\",\"dataId\":\"\",\"id\":\"2238\",\"name\":\"黄平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2239,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"施秉县\\\"]\",\"dataId\":\"\",\"id\":\"2239\",\"name\":\"施秉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2240,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"三穗县\\\"]\",\"dataId\":\"\",\"id\":\"2240\",\"name\":\"三穗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2241,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"镇远县\\\"]\",\"dataId\":\"\",\"id\":\"2241\",\"name\":\"镇远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2242,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"岑巩县\\\"]\",\"dataId\":\"\",\"id\":\"2242\",\"name\":\"岑巩县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2243,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"天柱县\\\"]\",\"dataId\":\"\",\"id\":\"2243\",\"name\":\"天柱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2244,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"锦屏县\\\"]\",\"dataId\":\"\",\"id\":\"2244\",\"name\":\"锦屏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2245,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"剑河县\\\"]\",\"dataId\":\"\",\"id\":\"2245\",\"name\":\"剑河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2246,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"台江县\\\"]\",\"dataId\":\"\",\"id\":\"2246\",\"name\":\"台江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2247,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"黎平县\\\"]\",\"dataId\":\"\",\"id\":\"2247\",\"name\":\"黎平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2248,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"榕江县\\\"]\",\"dataId\":\"\",\"id\":\"2248\",\"name\":\"榕江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2249,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"从江县\\\"]\",\"dataId\":\"\",\"id\":\"2249\",\"name\":\"从江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2250,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"雷山县\\\"]\",\"dataId\":\"\",\"id\":\"2250\",\"name\":\"雷山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2251,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"麻江县\\\"]\",\"dataId\":\"\",\"id\":\"2251\",\"name\":\"麻江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2252,\"values\":{\"cityId\":\"263\",\"codes\":\"[\\\"丹寨县\\\"]\",\"dataId\":\"\",\"id\":\"2252\",\"name\":\"丹寨县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2253,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"都匀市\\\"]\",\"dataId\":\"\",\"id\":\"2253\",\"name\":\"都匀市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2254,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"福泉市\\\"]\",\"dataId\":\"\",\"id\":\"2254\",\"name\":\"福泉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2255,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"荔波县\\\"]\",\"dataId\":\"\",\"id\":\"2255\",\"name\":\"荔波县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2256,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"贵定县\\\"]\",\"dataId\":\"\",\"id\":\"2256\",\"name\":\"贵定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2257,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"瓮安县\\\"]\",\"dataId\":\"\",\"id\":\"2257\",\"name\":\"瓮安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2258,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"独山县\\\"]\",\"dataId\":\"\",\"id\":\"2258\",\"name\":\"独山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2259,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"平塘县\\\"]\",\"dataId\":\"\",\"id\":\"2259\",\"name\":\"平塘县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2260,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"罗甸县\\\"]\",\"dataId\":\"\",\"id\":\"2260\",\"name\":\"罗甸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2261,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"长顺县\\\"]\",\"dataId\":\"\",\"id\":\"2261\",\"name\":\"长顺县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2262,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"龙里县\\\"]\",\"dataId\":\"\",\"id\":\"2262\",\"name\":\"龙里县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2263,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"惠水县\\\"]\",\"dataId\":\"\",\"id\":\"2263\",\"name\":\"惠水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2264,\"values\":{\"cityId\":\"264\",\"codes\":\"[\\\"三都水族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2264\",\"name\":\"三都水族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2265,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"五华区\\\"]\",\"dataId\":\"\",\"id\":\"2265\",\"name\":\"五华区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2266,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"盘龙区\\\"]\",\"dataId\":\"\",\"id\":\"2266\",\"name\":\"盘龙区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2267,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"官渡区\\\"]\",\"dataId\":\"\",\"id\":\"2267\",\"name\":\"官渡区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2268,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"西山区\\\"]\",\"dataId\":\"\",\"id\":\"2268\",\"name\":\"西山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2269,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"东川区\\\"]\",\"dataId\":\"\",\"id\":\"2269\",\"name\":\"东川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2270,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"呈贡县\\\"]\",\"dataId\":\"\",\"id\":\"2270\",\"name\":\"呈贡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2271,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"晋宁县\\\"]\",\"dataId\":\"\",\"id\":\"2271\",\"name\":\"晋宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2272,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"富民县\\\"]\",\"dataId\":\"\",\"id\":\"2272\",\"name\":\"富民县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2273,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"宜良县\\\"]\",\"dataId\":\"\",\"id\":\"2273\",\"name\":\"宜良县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2274,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"石林彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2274\",\"name\":\"石林彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2275,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"嵩明县\\\"]\",\"dataId\":\"\",\"id\":\"2275\",\"name\":\"嵩明县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2276,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"禄劝彝族苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2276\",\"name\":\"禄劝彝族苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2277,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"寻甸回族彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2277\",\"name\":\"寻甸回族彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2278,\"values\":{\"cityId\":\"265\",\"codes\":\"[\\\"安宁市\\\"]\",\"dataId\":\"\",\"id\":\"2278\",\"name\":\"安宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2279,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"麒麟区\\\"]\",\"dataId\":\"\",\"id\":\"2279\",\"name\":\"麒麟区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2280,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"马龙县\\\"]\",\"dataId\":\"\",\"id\":\"2280\",\"name\":\"马龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2281,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"陆良县\\\"]\",\"dataId\":\"\",\"id\":\"2281\",\"name\":\"陆良县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2282,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"师宗县\\\"]\",\"dataId\":\"\",\"id\":\"2282\",\"name\":\"师宗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2283,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"罗平县\\\"]\",\"dataId\":\"\",\"id\":\"2283\",\"name\":\"罗平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2284,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"富源县\\\"]\",\"dataId\":\"\",\"id\":\"2284\",\"name\":\"富源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2285,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"会泽县\\\"]\",\"dataId\":\"\",\"id\":\"2285\",\"name\":\"会泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2286,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"沾益县\\\"]\",\"dataId\":\"\",\"id\":\"2286\",\"name\":\"沾益县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2287,\"values\":{\"cityId\":\"266\",\"codes\":\"[\\\"宣威市\\\"]\",\"dataId\":\"\",\"id\":\"2287\",\"name\":\"宣威市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2288,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"红塔区\\\"]\",\"dataId\":\"\",\"id\":\"2288\",\"name\":\"红塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2289,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"江川县\\\"]\",\"dataId\":\"\",\"id\":\"2289\",\"name\":\"江川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2290,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"澄江县\\\"]\",\"dataId\":\"\",\"id\":\"2290\",\"name\":\"澄江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2291,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"通海县\\\"]\",\"dataId\":\"\",\"id\":\"2291\",\"name\":\"通海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2292,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"华宁县\\\"]\",\"dataId\":\"\",\"id\":\"2292\",\"name\":\"华宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2293,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"易门县\\\"]\",\"dataId\":\"\",\"id\":\"2293\",\"name\":\"易门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2294,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"峨山彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2294\",\"name\":\"峨山彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2295,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"新平彝族傣族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2295\",\"name\":\"新平彝族傣族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2296,\"values\":{\"cityId\":\"267\",\"codes\":\"[\\\"元江哈尼族彝族傣族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2296\",\"name\":\"元江哈尼族彝族傣族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2297,\"values\":{\"cityId\":\"268\",\"codes\":\"[\\\"隆阳区\\\"]\",\"dataId\":\"\",\"id\":\"2297\",\"name\":\"隆阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2298,\"values\":{\"cityId\":\"268\",\"codes\":\"[\\\"施甸县\\\"]\",\"dataId\":\"\",\"id\":\"2298\",\"name\":\"施甸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2299,\"values\":{\"cityId\":\"268\",\"codes\":\"[\\\"腾冲县\\\"]\",\"dataId\":\"\",\"id\":\"2299\",\"name\":\"腾冲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2300,\"values\":{\"cityId\":\"268\",\"codes\":\"[\\\"龙陵县\\\"]\",\"dataId\":\"\",\"id\":\"2300\",\"name\":\"龙陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2301,\"values\":{\"cityId\":\"268\",\"codes\":\"[\\\"昌宁县\\\"]\",\"dataId\":\"\",\"id\":\"2301\",\"name\":\"昌宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2302,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"昭阳区\\\"]\",\"dataId\":\"\",\"id\":\"2302\",\"name\":\"昭阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2303,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"鲁甸县\\\"]\",\"dataId\":\"\",\"id\":\"2303\",\"name\":\"鲁甸县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2304,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"巧家县\\\"]\",\"dataId\":\"\",\"id\":\"2304\",\"name\":\"巧家县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2305,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"盐津县\\\"]\",\"dataId\":\"\",\"id\":\"2305\",\"name\":\"盐津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2306,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"大关县\\\"]\",\"dataId\":\"\",\"id\":\"2306\",\"name\":\"大关县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2307,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"永善县\\\"]\",\"dataId\":\"\",\"id\":\"2307\",\"name\":\"永善县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2308,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"绥江县\\\"]\",\"dataId\":\"\",\"id\":\"2308\",\"name\":\"绥江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2309,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"镇雄县\\\"]\",\"dataId\":\"\",\"id\":\"2309\",\"name\":\"镇雄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2310,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"彝良县\\\"]\",\"dataId\":\"\",\"id\":\"2310\",\"name\":\"彝良县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2311,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"威信县\\\"]\",\"dataId\":\"\",\"id\":\"2311\",\"name\":\"威信县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2312,\"values\":{\"cityId\":\"269\",\"codes\":\"[\\\"水富县\\\"]\",\"dataId\":\"\",\"id\":\"2312\",\"name\":\"水富县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2313,\"values\":{\"cityId\":\"270\",\"codes\":\"[\\\"古城区\\\"]\",\"dataId\":\"\",\"id\":\"2313\",\"name\":\"古城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2314,\"values\":{\"cityId\":\"270\",\"codes\":\"[\\\"玉龙纳西族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2314\",\"name\":\"玉龙纳西族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2315,\"values\":{\"cityId\":\"270\",\"codes\":\"[\\\"永胜县\\\"]\",\"dataId\":\"\",\"id\":\"2315\",\"name\":\"永胜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2316,\"values\":{\"cityId\":\"270\",\"codes\":\"[\\\"华坪县\\\"]\",\"dataId\":\"\",\"id\":\"2316\",\"name\":\"华坪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2317,\"values\":{\"cityId\":\"270\",\"codes\":\"[\\\"宁蒗彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2317\",\"name\":\"宁蒗彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2318,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"翠云区\\\"]\",\"dataId\":\"\",\"id\":\"2318\",\"name\":\"翠云区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2319,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"普洱哈尼族彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2319\",\"name\":\"普洱哈尼族彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2320,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"墨江哈尼族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2320\",\"name\":\"墨江哈尼族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2321,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"景东彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2321\",\"name\":\"景东彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2322,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"景谷傣族彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2322\",\"name\":\"景谷傣族彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2323,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"镇沅彝族哈尼族拉祜族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2323\",\"name\":\"镇沅彝族哈尼族拉祜族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2324,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"江城哈尼族彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2324\",\"name\":\"江城哈尼族彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2325,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"孟连傣族拉祜族佤族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2325\",\"name\":\"孟连傣族拉祜族佤族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2326,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"澜沧拉祜族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2326\",\"name\":\"澜沧拉祜族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2327,\"values\":{\"cityId\":\"271\",\"codes\":\"[\\\"西盟佤族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2327\",\"name\":\"西盟佤族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2328,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"临翔区\\\"]\",\"dataId\":\"\",\"id\":\"2328\",\"name\":\"临翔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2329,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"凤庆县\\\"]\",\"dataId\":\"\",\"id\":\"2329\",\"name\":\"凤庆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2330,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"云县\\\"]\",\"dataId\":\"\",\"id\":\"2330\",\"name\":\"云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2331,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"永德县\\\"]\",\"dataId\":\"\",\"id\":\"2331\",\"name\":\"永德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2332,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"镇康县\\\"]\",\"dataId\":\"\",\"id\":\"2332\",\"name\":\"镇康县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2333,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"双江拉祜族佤族布朗族傣族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2333\",\"name\":\"双江拉祜族佤族布朗族傣族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2334,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"耿马傣族佤族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2334\",\"name\":\"耿马傣族佤族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2335,\"values\":{\"cityId\":\"272\",\"codes\":\"[\\\"沧源佤族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2335\",\"name\":\"沧源佤族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2336,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"楚雄市\\\"]\",\"dataId\":\"\",\"id\":\"2336\",\"name\":\"楚雄市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2337,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"双柏县\\\"]\",\"dataId\":\"\",\"id\":\"2337\",\"name\":\"双柏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2338,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"牟定县\\\"]\",\"dataId\":\"\",\"id\":\"2338\",\"name\":\"牟定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2339,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"南华县\\\"]\",\"dataId\":\"\",\"id\":\"2339\",\"name\":\"南华县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2340,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"姚安县\\\"]\",\"dataId\":\"\",\"id\":\"2340\",\"name\":\"姚安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2341,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"大姚县\\\"]\",\"dataId\":\"\",\"id\":\"2341\",\"name\":\"大姚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2342,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"永仁县\\\"]\",\"dataId\":\"\",\"id\":\"2342\",\"name\":\"永仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2343,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"元谋县\\\"]\",\"dataId\":\"\",\"id\":\"2343\",\"name\":\"元谋县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2344,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"武定县\\\"]\",\"dataId\":\"\",\"id\":\"2344\",\"name\":\"武定县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2345,\"values\":{\"cityId\":\"273\",\"codes\":\"[\\\"禄丰县\\\"]\",\"dataId\":\"\",\"id\":\"2345\",\"name\":\"禄丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2346,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"个旧市\\\"]\",\"dataId\":\"\",\"id\":\"2346\",\"name\":\"个旧市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2347,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"开远市\\\"]\",\"dataId\":\"\",\"id\":\"2347\",\"name\":\"开远市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2348,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"蒙自县\\\"]\",\"dataId\":\"\",\"id\":\"2348\",\"name\":\"蒙自县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2349,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"屏边苗族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2349\",\"name\":\"屏边苗族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2350,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"建水县\\\"]\",\"dataId\":\"\",\"id\":\"2350\",\"name\":\"建水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2351,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"石屏县\\\"]\",\"dataId\":\"\",\"id\":\"2351\",\"name\":\"石屏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2352,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"弥勒县\\\"]\",\"dataId\":\"\",\"id\":\"2352\",\"name\":\"弥勒县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2353,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"泸西县\\\"]\",\"dataId\":\"\",\"id\":\"2353\",\"name\":\"泸西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2354,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"元阳县\\\"]\",\"dataId\":\"\",\"id\":\"2354\",\"name\":\"元阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2355,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"红河县\\\"]\",\"dataId\":\"\",\"id\":\"2355\",\"name\":\"红河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2356,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"金平苗族瑶族傣族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2356\",\"name\":\"金平苗族瑶族傣族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2357,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"绿春县\\\"]\",\"dataId\":\"\",\"id\":\"2357\",\"name\":\"绿春县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2358,\"values\":{\"cityId\":\"274\",\"codes\":\"[\\\"河口瑶族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2358\",\"name\":\"河口瑶族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2359,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"文山县\\\"]\",\"dataId\":\"\",\"id\":\"2359\",\"name\":\"文山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2360,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"砚山县\\\"]\",\"dataId\":\"\",\"id\":\"2360\",\"name\":\"砚山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2361,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"西畴县\\\"]\",\"dataId\":\"\",\"id\":\"2361\",\"name\":\"西畴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2362,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"麻栗坡县\\\"]\",\"dataId\":\"\",\"id\":\"2362\",\"name\":\"麻栗坡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2363,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"马关县\\\"]\",\"dataId\":\"\",\"id\":\"2363\",\"name\":\"马关县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2364,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"丘北县\\\"]\",\"dataId\":\"\",\"id\":\"2364\",\"name\":\"丘北县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2365,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"广南县\\\"]\",\"dataId\":\"\",\"id\":\"2365\",\"name\":\"广南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2366,\"values\":{\"cityId\":\"275\",\"codes\":\"[\\\"富宁县\\\"]\",\"dataId\":\"\",\"id\":\"2366\",\"name\":\"富宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2367,\"values\":{\"cityId\":\"276\",\"codes\":\"[\\\"景洪市\\\"]\",\"dataId\":\"\",\"id\":\"2367\",\"name\":\"景洪市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2368,\"values\":{\"cityId\":\"276\",\"codes\":\"[\\\"勐海县\\\"]\",\"dataId\":\"\",\"id\":\"2368\",\"name\":\"勐海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2369,\"values\":{\"cityId\":\"276\",\"codes\":\"[\\\"勐腊县\\\"]\",\"dataId\":\"\",\"id\":\"2369\",\"name\":\"勐腊县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2370,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"大理市\\\"]\",\"dataId\":\"\",\"id\":\"2370\",\"name\":\"大理市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2371,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"漾濞彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2371\",\"name\":\"漾濞彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2372,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"祥云县\\\"]\",\"dataId\":\"\",\"id\":\"2372\",\"name\":\"祥云县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2373,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"宾川县\\\"]\",\"dataId\":\"\",\"id\":\"2373\",\"name\":\"宾川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2374,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"弥渡县\\\"]\",\"dataId\":\"\",\"id\":\"2374\",\"name\":\"弥渡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2375,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"南涧彝族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2375\",\"name\":\"南涧彝族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2376,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"巍山彝族回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2376\",\"name\":\"巍山彝族回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2377,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"永平县\\\"]\",\"dataId\":\"\",\"id\":\"2377\",\"name\":\"永平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2378,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"云龙县\\\"]\",\"dataId\":\"\",\"id\":\"2378\",\"name\":\"云龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2379,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"洱源县\\\"]\",\"dataId\":\"\",\"id\":\"2379\",\"name\":\"洱源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2380,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"剑川县\\\"]\",\"dataId\":\"\",\"id\":\"2380\",\"name\":\"剑川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2381,\"values\":{\"cityId\":\"277\",\"codes\":\"[\\\"鹤庆县\\\"]\",\"dataId\":\"\",\"id\":\"2381\",\"name\":\"鹤庆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2382,\"values\":{\"cityId\":\"278\",\"codes\":\"[\\\"瑞丽市\\\"]\",\"dataId\":\"\",\"id\":\"2382\",\"name\":\"瑞丽市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2383,\"values\":{\"cityId\":\"278\",\"codes\":\"[\\\"潞西市\\\"]\",\"dataId\":\"\",\"id\":\"2383\",\"name\":\"潞西市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2384,\"values\":{\"cityId\":\"278\",\"codes\":\"[\\\"梁河县\\\"]\",\"dataId\":\"\",\"id\":\"2384\",\"name\":\"梁河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2385,\"values\":{\"cityId\":\"278\",\"codes\":\"[\\\"盈江县\\\"]\",\"dataId\":\"\",\"id\":\"2385\",\"name\":\"盈江县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2386,\"values\":{\"cityId\":\"278\",\"codes\":\"[\\\"陇川县\\\"]\",\"dataId\":\"\",\"id\":\"2386\",\"name\":\"陇川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2387,\"values\":{\"cityId\":\"279\",\"codes\":\"[\\\"泸水县\\\"]\",\"dataId\":\"\",\"id\":\"2387\",\"name\":\"泸水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2388,\"values\":{\"cityId\":\"279\",\"codes\":\"[\\\"福贡县\\\"]\",\"dataId\":\"\",\"id\":\"2388\",\"name\":\"福贡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2389,\"values\":{\"cityId\":\"279\",\"codes\":\"[\\\"贡山独龙族怒族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2389\",\"name\":\"贡山独龙族怒族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2390,\"values\":{\"cityId\":\"279\",\"codes\":\"[\\\"兰坪白族普米族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2390\",\"name\":\"兰坪白族普米族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2391,\"values\":{\"cityId\":\"280\",\"codes\":\"[\\\"香格里拉县\\\"]\",\"dataId\":\"\",\"id\":\"2391\",\"name\":\"香格里拉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2392,\"values\":{\"cityId\":\"280\",\"codes\":\"[\\\"德钦县\\\"]\",\"dataId\":\"\",\"id\":\"2392\",\"name\":\"德钦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2393,\"values\":{\"cityId\":\"280\",\"codes\":\"[\\\"维西傈僳族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2393\",\"name\":\"维西傈僳族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2394,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"城关区\\\"]\",\"dataId\":\"\",\"id\":\"2394\",\"name\":\"城关区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2395,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"林周县\\\"]\",\"dataId\":\"\",\"id\":\"2395\",\"name\":\"林周县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2396,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"当雄县\\\"]\",\"dataId\":\"\",\"id\":\"2396\",\"name\":\"当雄县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2397,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"尼木县\\\"]\",\"dataId\":\"\",\"id\":\"2397\",\"name\":\"尼木县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2398,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"曲水县\\\"]\",\"dataId\":\"\",\"id\":\"2398\",\"name\":\"曲水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2399,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"堆龙德庆县\\\"]\",\"dataId\":\"\",\"id\":\"2399\",\"name\":\"堆龙德庆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2400,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"达孜县\\\"]\",\"dataId\":\"\",\"id\":\"2400\",\"name\":\"达孜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2401,\"values\":{\"cityId\":\"281\",\"codes\":\"[\\\"墨竹工卡县\\\"]\",\"dataId\":\"\",\"id\":\"2401\",\"name\":\"墨竹工卡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2402,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"昌都县\\\"]\",\"dataId\":\"\",\"id\":\"2402\",\"name\":\"昌都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2403,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"江达县\\\"]\",\"dataId\":\"\",\"id\":\"2403\",\"name\":\"江达县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2404,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"贡觉县\\\"]\",\"dataId\":\"\",\"id\":\"2404\",\"name\":\"贡觉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2405,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"类乌齐县\\\"]\",\"dataId\":\"\",\"id\":\"2405\",\"name\":\"类乌齐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2406,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"丁青县\\\"]\",\"dataId\":\"\",\"id\":\"2406\",\"name\":\"丁青县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2407,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"察雅县\\\"]\",\"dataId\":\"\",\"id\":\"2407\",\"name\":\"察雅县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2408,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"八宿县\\\"]\",\"dataId\":\"\",\"id\":\"2408\",\"name\":\"八宿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2409,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"左贡县\\\"]\",\"dataId\":\"\",\"id\":\"2409\",\"name\":\"左贡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2410,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"芒康县\\\"]\",\"dataId\":\"\",\"id\":\"2410\",\"name\":\"芒康县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2411,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"洛隆县\\\"]\",\"dataId\":\"\",\"id\":\"2411\",\"name\":\"洛隆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2412,\"values\":{\"cityId\":\"282\",\"codes\":\"[\\\"边坝县\\\"]\",\"dataId\":\"\",\"id\":\"2412\",\"name\":\"边坝县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2413,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"乃东县\\\"]\",\"dataId\":\"\",\"id\":\"2413\",\"name\":\"乃东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2414,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"扎囊县\\\"]\",\"dataId\":\"\",\"id\":\"2414\",\"name\":\"扎囊县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2415,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"贡嘎县\\\"]\",\"dataId\":\"\",\"id\":\"2415\",\"name\":\"贡嘎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2416,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"桑日县\\\"]\",\"dataId\":\"\",\"id\":\"2416\",\"name\":\"桑日县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2417,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"琼结县\\\"]\",\"dataId\":\"\",\"id\":\"2417\",\"name\":\"琼结县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2418,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"曲松县\\\"]\",\"dataId\":\"\",\"id\":\"2418\",\"name\":\"曲松县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2419,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"措美县\\\"]\",\"dataId\":\"\",\"id\":\"2419\",\"name\":\"措美县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2420,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"洛扎县\\\"]\",\"dataId\":\"\",\"id\":\"2420\",\"name\":\"洛扎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2421,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"加查县\\\"]\",\"dataId\":\"\",\"id\":\"2421\",\"name\":\"加查县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2422,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"隆子县\\\"]\",\"dataId\":\"\",\"id\":\"2422\",\"name\":\"隆子县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2423,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"错那县\\\"]\",\"dataId\":\"\",\"id\":\"2423\",\"name\":\"错那县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2424,\"values\":{\"cityId\":\"283\",\"codes\":\"[\\\"浪卡子县\\\"]\",\"dataId\":\"\",\"id\":\"2424\",\"name\":\"浪卡子县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2425,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"日喀则市\\\"]\",\"dataId\":\"\",\"id\":\"2425\",\"name\":\"日喀则市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2426,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"南木林县\\\"]\",\"dataId\":\"\",\"id\":\"2426\",\"name\":\"南木林县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2427,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"江孜县\\\"]\",\"dataId\":\"\",\"id\":\"2427\",\"name\":\"江孜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2428,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"定日县\\\"]\",\"dataId\":\"\",\"id\":\"2428\",\"name\":\"定日县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2429,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"萨迦县\\\"]\",\"dataId\":\"\",\"id\":\"2429\",\"name\":\"萨迦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2430,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"拉孜县\\\"]\",\"dataId\":\"\",\"id\":\"2430\",\"name\":\"拉孜县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2431,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"昂仁县\\\"]\",\"dataId\":\"\",\"id\":\"2431\",\"name\":\"昂仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2432,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"谢通门县\\\"]\",\"dataId\":\"\",\"id\":\"2432\",\"name\":\"谢通门县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2433,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"白朗县\\\"]\",\"dataId\":\"\",\"id\":\"2433\",\"name\":\"白朗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2434,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"仁布县\\\"]\",\"dataId\":\"\",\"id\":\"2434\",\"name\":\"仁布县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2435,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"康马县\\\"]\",\"dataId\":\"\",\"id\":\"2435\",\"name\":\"康马县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2436,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"定结县\\\"]\",\"dataId\":\"\",\"id\":\"2436\",\"name\":\"定结县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2437,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"仲巴县\\\"]\",\"dataId\":\"\",\"id\":\"2437\",\"name\":\"仲巴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2438,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"亚东县\\\"]\",\"dataId\":\"\",\"id\":\"2438\",\"name\":\"亚东县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2439,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"吉隆县\\\"]\",\"dataId\":\"\",\"id\":\"2439\",\"name\":\"吉隆县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2440,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"聂拉木县\\\"]\",\"dataId\":\"\",\"id\":\"2440\",\"name\":\"聂拉木县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2441,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"萨嘎县\\\"]\",\"dataId\":\"\",\"id\":\"2441\",\"name\":\"萨嘎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2442,\"values\":{\"cityId\":\"284\",\"codes\":\"[\\\"岗巴县\\\"]\",\"dataId\":\"\",\"id\":\"2442\",\"name\":\"岗巴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2443,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"那曲县\\\"]\",\"dataId\":\"\",\"id\":\"2443\",\"name\":\"那曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2444,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"嘉黎县\\\"]\",\"dataId\":\"\",\"id\":\"2444\",\"name\":\"嘉黎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2445,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"比如县\\\"]\",\"dataId\":\"\",\"id\":\"2445\",\"name\":\"比如县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2446,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"聂荣县\\\"]\",\"dataId\":\"\",\"id\":\"2446\",\"name\":\"聂荣县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2447,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"安多县\\\"]\",\"dataId\":\"\",\"id\":\"2447\",\"name\":\"安多县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2448,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"申扎县\\\"]\",\"dataId\":\"\",\"id\":\"2448\",\"name\":\"申扎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2449,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"索县\\\"]\",\"dataId\":\"\",\"id\":\"2449\",\"name\":\"索县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2450,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"班戈县\\\"]\",\"dataId\":\"\",\"id\":\"2450\",\"name\":\"班戈县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2451,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"巴青县\\\"]\",\"dataId\":\"\",\"id\":\"2451\",\"name\":\"巴青县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2452,\"values\":{\"cityId\":\"285\",\"codes\":\"[\\\"尼玛县\\\"]\",\"dataId\":\"\",\"id\":\"2452\",\"name\":\"尼玛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2453,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"普兰县\\\"]\",\"dataId\":\"\",\"id\":\"2453\",\"name\":\"普兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2454,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"札达县\\\"]\",\"dataId\":\"\",\"id\":\"2454\",\"name\":\"札达县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2455,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"噶尔县\\\"]\",\"dataId\":\"\",\"id\":\"2455\",\"name\":\"噶尔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2456,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"日土县\\\"]\",\"dataId\":\"\",\"id\":\"2456\",\"name\":\"日土县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2457,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"革吉县\\\"]\",\"dataId\":\"\",\"id\":\"2457\",\"name\":\"革吉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2458,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"改则县\\\"]\",\"dataId\":\"\",\"id\":\"2458\",\"name\":\"改则县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2459,\"values\":{\"cityId\":\"286\",\"codes\":\"[\\\"措勤县\\\"]\",\"dataId\":\"\",\"id\":\"2459\",\"name\":\"措勤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2460,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"林芝县\\\"]\",\"dataId\":\"\",\"id\":\"2460\",\"name\":\"林芝县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2461,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"工布江达县\\\"]\",\"dataId\":\"\",\"id\":\"2461\",\"name\":\"工布江达县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2462,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"米林县\\\"]\",\"dataId\":\"\",\"id\":\"2462\",\"name\":\"米林县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2463,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"墨脱县\\\"]\",\"dataId\":\"\",\"id\":\"2463\",\"name\":\"墨脱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2464,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"波密县\\\"]\",\"dataId\":\"\",\"id\":\"2464\",\"name\":\"波密县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2465,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"察隅县\\\"]\",\"dataId\":\"\",\"id\":\"2465\",\"name\":\"察隅县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2466,\"values\":{\"cityId\":\"287\",\"codes\":\"[\\\"朗县\\\"]\",\"dataId\":\"\",\"id\":\"2466\",\"name\":\"朗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2467,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"碑林区\\\"]\",\"dataId\":\"\",\"id\":\"2467\",\"name\":\"碑林区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2468,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"莲湖区\\\"]\",\"dataId\":\"\",\"id\":\"2468\",\"name\":\"莲湖区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2469,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"灞桥区\\\"]\",\"dataId\":\"\",\"id\":\"2469\",\"name\":\"灞桥区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2470,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"未央区\\\"]\",\"dataId\":\"\",\"id\":\"2470\",\"name\":\"未央区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2471,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"雁塔区\\\"]\",\"dataId\":\"\",\"id\":\"2471\",\"name\":\"雁塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2472,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"阎良区\\\"]\",\"dataId\":\"\",\"id\":\"2472\",\"name\":\"阎良区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2473,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"临潼区\\\"]\",\"dataId\":\"\",\"id\":\"2473\",\"name\":\"临潼区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2474,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"蓝田县\\\"]\",\"dataId\":\"\",\"id\":\"2474\",\"name\":\"蓝田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2475,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"周至县\\\"]\",\"dataId\":\"\",\"id\":\"2475\",\"name\":\"周至县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2476,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"户县\\\"]\",\"dataId\":\"\",\"id\":\"2476\",\"name\":\"户县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2477,\"values\":{\"cityId\":\"288\",\"codes\":\"[\\\"高陵县\\\"]\",\"dataId\":\"\",\"id\":\"2477\",\"name\":\"高陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2478,\"values\":{\"cityId\":\"289\",\"codes\":\"[\\\"王益区\\\"]\",\"dataId\":\"\",\"id\":\"2478\",\"name\":\"王益区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2479,\"values\":{\"cityId\":\"289\",\"codes\":\"[\\\"印台区\\\"]\",\"dataId\":\"\",\"id\":\"2479\",\"name\":\"印台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2480,\"values\":{\"cityId\":\"289\",\"codes\":\"[\\\"耀州区\\\"]\",\"dataId\":\"\",\"id\":\"2480\",\"name\":\"耀州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2481,\"values\":{\"cityId\":\"289\",\"codes\":\"[\\\"宜君县\\\"]\",\"dataId\":\"\",\"id\":\"2481\",\"name\":\"宜君县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2482,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"渭滨区\\\"]\",\"dataId\":\"\",\"id\":\"2482\",\"name\":\"渭滨区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2483,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"金台区\\\"]\",\"dataId\":\"\",\"id\":\"2483\",\"name\":\"金台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2484,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"陈仓区\\\"]\",\"dataId\":\"\",\"id\":\"2484\",\"name\":\"陈仓区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2485,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"凤翔县\\\"]\",\"dataId\":\"\",\"id\":\"2485\",\"name\":\"凤翔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2486,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"岐山县\\\"]\",\"dataId\":\"\",\"id\":\"2486\",\"name\":\"岐山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2487,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"扶风县\\\"]\",\"dataId\":\"\",\"id\":\"2487\",\"name\":\"扶风县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2488,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"眉县\\\"]\",\"dataId\":\"\",\"id\":\"2488\",\"name\":\"眉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2489,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"陇县\\\"]\",\"dataId\":\"\",\"id\":\"2489\",\"name\":\"陇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2490,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"千阳县\\\"]\",\"dataId\":\"\",\"id\":\"2490\",\"name\":\"千阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2491,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"麟游县\\\"]\",\"dataId\":\"\",\"id\":\"2491\",\"name\":\"麟游县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2492,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"凤县\\\"]\",\"dataId\":\"\",\"id\":\"2492\",\"name\":\"凤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2493,\"values\":{\"cityId\":\"290\",\"codes\":\"[\\\"太白县\\\"]\",\"dataId\":\"\",\"id\":\"2493\",\"name\":\"太白县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2494,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"秦都区\\\"]\",\"dataId\":\"\",\"id\":\"2494\",\"name\":\"秦都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2495,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"杨凌区\\\"]\",\"dataId\":\"\",\"id\":\"2495\",\"name\":\"杨凌区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2496,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"渭城区\\\"]\",\"dataId\":\"\",\"id\":\"2496\",\"name\":\"渭城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2497,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"三原县\\\"]\",\"dataId\":\"\",\"id\":\"2497\",\"name\":\"三原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2498,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"泾阳县\\\"]\",\"dataId\":\"\",\"id\":\"2498\",\"name\":\"泾阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2499,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"乾县\\\"]\",\"dataId\":\"\",\"id\":\"2499\",\"name\":\"乾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2500,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"礼泉县\\\"]\",\"dataId\":\"\",\"id\":\"2500\",\"name\":\"礼泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2501,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"永寿县\\\"]\",\"dataId\":\"\",\"id\":\"2501\",\"name\":\"永寿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2502,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"彬县\\\"]\",\"dataId\":\"\",\"id\":\"2502\",\"name\":\"彬县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2503,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"长武县\\\"]\",\"dataId\":\"\",\"id\":\"2503\",\"name\":\"长武县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2504,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"旬邑县\\\"]\",\"dataId\":\"\",\"id\":\"2504\",\"name\":\"旬邑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2505,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"淳化县\\\"]\",\"dataId\":\"\",\"id\":\"2505\",\"name\":\"淳化县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2506,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"武功县\\\"]\",\"dataId\":\"\",\"id\":\"2506\",\"name\":\"武功县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2507,\"values\":{\"cityId\":\"291\",\"codes\":\"[\\\"兴平市\\\"]\",\"dataId\":\"\",\"id\":\"2507\",\"name\":\"兴平市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2508,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"临渭区\\\"]\",\"dataId\":\"\",\"id\":\"2508\",\"name\":\"临渭区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2509,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"华县\\\"]\",\"dataId\":\"\",\"id\":\"2509\",\"name\":\"华县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2510,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"潼关县\\\"]\",\"dataId\":\"\",\"id\":\"2510\",\"name\":\"潼关县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2511,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"大荔县\\\"]\",\"dataId\":\"\",\"id\":\"2511\",\"name\":\"大荔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2512,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"合阳县\\\"]\",\"dataId\":\"\",\"id\":\"2512\",\"name\":\"合阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2513,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"澄城县\\\"]\",\"dataId\":\"\",\"id\":\"2513\",\"name\":\"澄城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2514,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"蒲城县\\\"]\",\"dataId\":\"\",\"id\":\"2514\",\"name\":\"蒲城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2515,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"白水县\\\"]\",\"dataId\":\"\",\"id\":\"2515\",\"name\":\"白水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2516,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"富平县\\\"]\",\"dataId\":\"\",\"id\":\"2516\",\"name\":\"富平县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2517,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"韩城市\\\"]\",\"dataId\":\"\",\"id\":\"2517\",\"name\":\"韩城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2518,\"values\":{\"cityId\":\"292\",\"codes\":\"[\\\"华阴市\\\"]\",\"dataId\":\"\",\"id\":\"2518\",\"name\":\"华阴市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2519,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"宝塔区\\\"]\",\"dataId\":\"\",\"id\":\"2519\",\"name\":\"宝塔区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2520,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"延长县\\\"]\",\"dataId\":\"\",\"id\":\"2520\",\"name\":\"延长县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2521,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"延川县\\\"]\",\"dataId\":\"\",\"id\":\"2521\",\"name\":\"延川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2522,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"子长县\\\"]\",\"dataId\":\"\",\"id\":\"2522\",\"name\":\"子长县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2523,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"安塞县\\\"]\",\"dataId\":\"\",\"id\":\"2523\",\"name\":\"安塞县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2524,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"志丹县\\\"]\",\"dataId\":\"\",\"id\":\"2524\",\"name\":\"志丹县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2525,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"吴旗县\\\"]\",\"dataId\":\"\",\"id\":\"2525\",\"name\":\"吴旗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2526,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"甘泉县\\\"]\",\"dataId\":\"\",\"id\":\"2526\",\"name\":\"甘泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2527,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"富县\\\"]\",\"dataId\":\"\",\"id\":\"2527\",\"name\":\"富县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2528,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"洛川县\\\"]\",\"dataId\":\"\",\"id\":\"2528\",\"name\":\"洛川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2529,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"宜川县\\\"]\",\"dataId\":\"\",\"id\":\"2529\",\"name\":\"宜川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2530,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"黄龙县\\\"]\",\"dataId\":\"\",\"id\":\"2530\",\"name\":\"黄龙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2531,\"values\":{\"cityId\":\"293\",\"codes\":\"[\\\"黄陵县\\\"]\",\"dataId\":\"\",\"id\":\"2531\",\"name\":\"黄陵县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2532,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"汉台区\\\"]\",\"dataId\":\"\",\"id\":\"2532\",\"name\":\"汉台区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2533,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"南郑县\\\"]\",\"dataId\":\"\",\"id\":\"2533\",\"name\":\"南郑县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2534,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"城固县\\\"]\",\"dataId\":\"\",\"id\":\"2534\",\"name\":\"城固县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2535,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"洋县\\\"]\",\"dataId\":\"\",\"id\":\"2535\",\"name\":\"洋县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2536,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"西乡县\\\"]\",\"dataId\":\"\",\"id\":\"2536\",\"name\":\"西乡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2537,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"勉县\\\"]\",\"dataId\":\"\",\"id\":\"2537\",\"name\":\"勉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2538,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"宁强县\\\"]\",\"dataId\":\"\",\"id\":\"2538\",\"name\":\"宁强县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2539,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"略阳县\\\"]\",\"dataId\":\"\",\"id\":\"2539\",\"name\":\"略阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2540,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"镇巴县\\\"]\",\"dataId\":\"\",\"id\":\"2540\",\"name\":\"镇巴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2541,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"留坝县\\\"]\",\"dataId\":\"\",\"id\":\"2541\",\"name\":\"留坝县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2542,\"values\":{\"cityId\":\"294\",\"codes\":\"[\\\"佛坪县\\\"]\",\"dataId\":\"\",\"id\":\"2542\",\"name\":\"佛坪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2543,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"榆阳区\\\"]\",\"dataId\":\"\",\"id\":\"2543\",\"name\":\"榆阳区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2544,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"神木县\\\"]\",\"dataId\":\"\",\"id\":\"2544\",\"name\":\"神木县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2545,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"府谷县\\\"]\",\"dataId\":\"\",\"id\":\"2545\",\"name\":\"府谷县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2546,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"横山县\\\"]\",\"dataId\":\"\",\"id\":\"2546\",\"name\":\"横山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2547,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"靖边县\\\"]\",\"dataId\":\"\",\"id\":\"2547\",\"name\":\"靖边县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2548,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"定边县\\\"]\",\"dataId\":\"\",\"id\":\"2548\",\"name\":\"定边县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2549,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"绥德县\\\"]\",\"dataId\":\"\",\"id\":\"2549\",\"name\":\"绥德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2550,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"米脂县\\\"]\",\"dataId\":\"\",\"id\":\"2550\",\"name\":\"米脂县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2551,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"佳县\\\"]\",\"dataId\":\"\",\"id\":\"2551\",\"name\":\"佳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2552,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"吴堡县\\\"]\",\"dataId\":\"\",\"id\":\"2552\",\"name\":\"吴堡县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2553,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"清涧县\\\"]\",\"dataId\":\"\",\"id\":\"2553\",\"name\":\"清涧县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2554,\"values\":{\"cityId\":\"295\",\"codes\":\"[\\\"子洲县\\\"]\",\"dataId\":\"\",\"id\":\"2554\",\"name\":\"子洲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2555,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"汉滨区\\\"]\",\"dataId\":\"\",\"id\":\"2555\",\"name\":\"汉滨区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2556,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"汉阴县\\\"]\",\"dataId\":\"\",\"id\":\"2556\",\"name\":\"汉阴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2557,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"石泉县\\\"]\",\"dataId\":\"\",\"id\":\"2557\",\"name\":\"石泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2558,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"宁陕县\\\"]\",\"dataId\":\"\",\"id\":\"2558\",\"name\":\"宁陕县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2559,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"紫阳县\\\"]\",\"dataId\":\"\",\"id\":\"2559\",\"name\":\"紫阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2560,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"岚皋县\\\"]\",\"dataId\":\"\",\"id\":\"2560\",\"name\":\"岚皋县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2561,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"平利县\\\"]\",\"dataId\":\"\",\"id\":\"2561\",\"name\":\"平利县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2562,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"镇坪县\\\"]\",\"dataId\":\"\",\"id\":\"2562\",\"name\":\"镇坪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2563,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"旬阳县\\\"]\",\"dataId\":\"\",\"id\":\"2563\",\"name\":\"旬阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2564,\"values\":{\"cityId\":\"296\",\"codes\":\"[\\\"白河县\\\"]\",\"dataId\":\"\",\"id\":\"2564\",\"name\":\"白河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2565,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"商州区\\\"]\",\"dataId\":\"\",\"id\":\"2565\",\"name\":\"商州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2566,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"洛南县\\\"]\",\"dataId\":\"\",\"id\":\"2566\",\"name\":\"洛南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2567,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"丹凤县\\\"]\",\"dataId\":\"\",\"id\":\"2567\",\"name\":\"丹凤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2568,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"商南县\\\"]\",\"dataId\":\"\",\"id\":\"2568\",\"name\":\"商南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2569,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"山阳县\\\"]\",\"dataId\":\"\",\"id\":\"2569\",\"name\":\"山阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2570,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"镇安县\\\"]\",\"dataId\":\"\",\"id\":\"2570\",\"name\":\"镇安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2571,\"values\":{\"cityId\":\"297\",\"codes\":\"[\\\"柞水县\\\"]\",\"dataId\":\"\",\"id\":\"2571\",\"name\":\"柞水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2572,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"七里河区\\\"]\",\"dataId\":\"\",\"id\":\"2572\",\"name\":\"七里河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2573,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"西固区\\\"]\",\"dataId\":\"\",\"id\":\"2573\",\"name\":\"西固区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2574,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"安宁区\\\"]\",\"dataId\":\"\",\"id\":\"2574\",\"name\":\"安宁区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2575,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"红古区\\\"]\",\"dataId\":\"\",\"id\":\"2575\",\"name\":\"红古区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2576,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"永登县\\\"]\",\"dataId\":\"\",\"id\":\"2576\",\"name\":\"永登县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2577,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"皋兰县\\\"]\",\"dataId\":\"\",\"id\":\"2577\",\"name\":\"皋兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2578,\"values\":{\"cityId\":\"298\",\"codes\":\"[\\\"榆中县\\\"]\",\"dataId\":\"\",\"id\":\"2578\",\"name\":\"榆中县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2579,\"values\":{\"cityId\":\"300\",\"codes\":\"[\\\"金川区\\\"]\",\"dataId\":\"\",\"id\":\"2579\",\"name\":\"金川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2580,\"values\":{\"cityId\":\"300\",\"codes\":\"[\\\"永昌县\\\"]\",\"dataId\":\"\",\"id\":\"2580\",\"name\":\"永昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2581,\"values\":{\"cityId\":\"301\",\"codes\":\"[\\\"白银区\\\"]\",\"dataId\":\"\",\"id\":\"2581\",\"name\":\"白银区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2582,\"values\":{\"cityId\":\"301\",\"codes\":\"[\\\"平川区\\\"]\",\"dataId\":\"\",\"id\":\"2582\",\"name\":\"平川区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2583,\"values\":{\"cityId\":\"301\",\"codes\":\"[\\\"靖远县\\\"]\",\"dataId\":\"\",\"id\":\"2583\",\"name\":\"靖远县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2584,\"values\":{\"cityId\":\"301\",\"codes\":\"[\\\"会宁县\\\"]\",\"dataId\":\"\",\"id\":\"2584\",\"name\":\"会宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2585,\"values\":{\"cityId\":\"301\",\"codes\":\"[\\\"景泰县\\\"]\",\"dataId\":\"\",\"id\":\"2585\",\"name\":\"景泰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2586,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"秦城区\\\"]\",\"dataId\":\"\",\"id\":\"2586\",\"name\":\"秦城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2587,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"北道区\\\"]\",\"dataId\":\"\",\"id\":\"2587\",\"name\":\"北道区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2588,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"清水县\\\"]\",\"dataId\":\"\",\"id\":\"2588\",\"name\":\"清水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2589,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"秦安县\\\"]\",\"dataId\":\"\",\"id\":\"2589\",\"name\":\"秦安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2590,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"甘谷县\\\"]\",\"dataId\":\"\",\"id\":\"2590\",\"name\":\"甘谷县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2591,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"武山县\\\"]\",\"dataId\":\"\",\"id\":\"2591\",\"name\":\"武山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2592,\"values\":{\"cityId\":\"302\",\"codes\":\"[\\\"张家川回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2592\",\"name\":\"张家川回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2593,\"values\":{\"cityId\":\"303\",\"codes\":\"[\\\"凉州区\\\"]\",\"dataId\":\"\",\"id\":\"2593\",\"name\":\"凉州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2594,\"values\":{\"cityId\":\"303\",\"codes\":\"[\\\"民勤县\\\"]\",\"dataId\":\"\",\"id\":\"2594\",\"name\":\"民勤县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2595,\"values\":{\"cityId\":\"303\",\"codes\":\"[\\\"古浪县\\\"]\",\"dataId\":\"\",\"id\":\"2595\",\"name\":\"古浪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2596,\"values\":{\"cityId\":\"303\",\"codes\":\"[\\\"天祝藏族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2596\",\"name\":\"天祝藏族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2597,\"values\":{\"cityId\":\"304\",\"codes\":\"[\\\"甘州区\\\"]\",\"dataId\":\"\",\"id\":\"2597\",\"name\":\"甘州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2598,\"values\":{\"cityId\":\"304\",\"codes\":\"[\\\"肃南裕固族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2598\",\"name\":\"肃南裕固族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2599,\"values\":{\"cityId\":\"304\",\"codes\":\"[\\\"民乐县\\\"]\",\"dataId\":\"\",\"id\":\"2599\",\"name\":\"民乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2600,\"values\":{\"cityId\":\"304\",\"codes\":\"[\\\"临泽县\\\"]\",\"dataId\":\"\",\"id\":\"2600\",\"name\":\"临泽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2601,\"values\":{\"cityId\":\"304\",\"codes\":\"[\\\"高台县\\\"]\",\"dataId\":\"\",\"id\":\"2601\",\"name\":\"高台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2602,\"values\":{\"cityId\":\"304\",\"codes\":\"[\\\"山丹县\\\"]\",\"dataId\":\"\",\"id\":\"2602\",\"name\":\"山丹县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2603,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"崆峒区\\\"]\",\"dataId\":\"\",\"id\":\"2603\",\"name\":\"崆峒区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2604,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"泾川县\\\"]\",\"dataId\":\"\",\"id\":\"2604\",\"name\":\"泾川县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2605,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"灵台县\\\"]\",\"dataId\":\"\",\"id\":\"2605\",\"name\":\"灵台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2606,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"崇信县\\\"]\",\"dataId\":\"\",\"id\":\"2606\",\"name\":\"崇信县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2607,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"华亭县\\\"]\",\"dataId\":\"\",\"id\":\"2607\",\"name\":\"华亭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2608,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"庄浪县\\\"]\",\"dataId\":\"\",\"id\":\"2608\",\"name\":\"庄浪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2609,\"values\":{\"cityId\":\"305\",\"codes\":\"[\\\"静宁县\\\"]\",\"dataId\":\"\",\"id\":\"2609\",\"name\":\"静宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2610,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"肃州区\\\"]\",\"dataId\":\"\",\"id\":\"2610\",\"name\":\"肃州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2611,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"金塔县\\\"]\",\"dataId\":\"\",\"id\":\"2611\",\"name\":\"金塔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2612,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"安西县\\\"]\",\"dataId\":\"\",\"id\":\"2612\",\"name\":\"安西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2613,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"肃北蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2613\",\"name\":\"肃北蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2614,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"阿克塞哈萨克族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2614\",\"name\":\"阿克塞哈萨克族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2615,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"玉门市\\\"]\",\"dataId\":\"\",\"id\":\"2615\",\"name\":\"玉门市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2616,\"values\":{\"cityId\":\"306\",\"codes\":\"[\\\"敦煌市\\\"]\",\"dataId\":\"\",\"id\":\"2616\",\"name\":\"敦煌市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2617,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"西峰区\\\"]\",\"dataId\":\"\",\"id\":\"2617\",\"name\":\"西峰区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2618,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"庆城县\\\"]\",\"dataId\":\"\",\"id\":\"2618\",\"name\":\"庆城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2619,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"环县\\\"]\",\"dataId\":\"\",\"id\":\"2619\",\"name\":\"环县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2620,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"华池县\\\"]\",\"dataId\":\"\",\"id\":\"2620\",\"name\":\"华池县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2621,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"合水县\\\"]\",\"dataId\":\"\",\"id\":\"2621\",\"name\":\"合水县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2622,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"正宁县\\\"]\",\"dataId\":\"\",\"id\":\"2622\",\"name\":\"正宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2623,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"宁县\\\"]\",\"dataId\":\"\",\"id\":\"2623\",\"name\":\"宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2624,\"values\":{\"cityId\":\"307\",\"codes\":\"[\\\"镇原县\\\"]\",\"dataId\":\"\",\"id\":\"2624\",\"name\":\"镇原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2625,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"安定区\\\"]\",\"dataId\":\"\",\"id\":\"2625\",\"name\":\"安定区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2626,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"通渭县\\\"]\",\"dataId\":\"\",\"id\":\"2626\",\"name\":\"通渭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2627,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"陇西县\\\"]\",\"dataId\":\"\",\"id\":\"2627\",\"name\":\"陇西县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2628,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"渭源县\\\"]\",\"dataId\":\"\",\"id\":\"2628\",\"name\":\"渭源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2629,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"临洮县\\\"]\",\"dataId\":\"\",\"id\":\"2629\",\"name\":\"临洮县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2630,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"漳县\\\"]\",\"dataId\":\"\",\"id\":\"2630\",\"name\":\"漳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2631,\"values\":{\"cityId\":\"308\",\"codes\":\"[\\\"岷县\\\"]\",\"dataId\":\"\",\"id\":\"2631\",\"name\":\"岷县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2632,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"武都区\\\"]\",\"dataId\":\"\",\"id\":\"2632\",\"name\":\"武都区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2633,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"成县\\\"]\",\"dataId\":\"\",\"id\":\"2633\",\"name\":\"成县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2634,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"文县\\\"]\",\"dataId\":\"\",\"id\":\"2634\",\"name\":\"文县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2635,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"宕昌县\\\"]\",\"dataId\":\"\",\"id\":\"2635\",\"name\":\"宕昌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2636,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"康县\\\"]\",\"dataId\":\"\",\"id\":\"2636\",\"name\":\"康县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2637,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"西和县\\\"]\",\"dataId\":\"\",\"id\":\"2637\",\"name\":\"西和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2638,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"礼县\\\"]\",\"dataId\":\"\",\"id\":\"2638\",\"name\":\"礼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2639,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"徽县\\\"]\",\"dataId\":\"\",\"id\":\"2639\",\"name\":\"徽县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2640,\"values\":{\"cityId\":\"309\",\"codes\":\"[\\\"两当县\\\"]\",\"dataId\":\"\",\"id\":\"2640\",\"name\":\"两当县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2641,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"临夏市\\\"]\",\"dataId\":\"\",\"id\":\"2641\",\"name\":\"临夏市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2642,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"临夏县\\\"]\",\"dataId\":\"\",\"id\":\"2642\",\"name\":\"临夏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2643,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"康乐县\\\"]\",\"dataId\":\"\",\"id\":\"2643\",\"name\":\"康乐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2644,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"永靖县\\\"]\",\"dataId\":\"\",\"id\":\"2644\",\"name\":\"永靖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2645,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"广河县\\\"]\",\"dataId\":\"\",\"id\":\"2645\",\"name\":\"广河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2646,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"和政县\\\"]\",\"dataId\":\"\",\"id\":\"2646\",\"name\":\"和政县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2647,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"东乡族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2647\",\"name\":\"东乡族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2648,\"values\":{\"cityId\":\"310\",\"codes\":\"[\\\"积石山保安族东乡族撒拉族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2648\",\"name\":\"积石山保安族东乡族撒拉族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2649,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"合作市\\\"]\",\"dataId\":\"\",\"id\":\"2649\",\"name\":\"合作市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2650,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"临潭县\\\"]\",\"dataId\":\"\",\"id\":\"2650\",\"name\":\"临潭县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2651,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"卓尼县\\\"]\",\"dataId\":\"\",\"id\":\"2651\",\"name\":\"卓尼县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2652,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"舟曲县\\\"]\",\"dataId\":\"\",\"id\":\"2652\",\"name\":\"舟曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2653,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"迭部县\\\"]\",\"dataId\":\"\",\"id\":\"2653\",\"name\":\"迭部县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2654,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"玛曲县\\\"]\",\"dataId\":\"\",\"id\":\"2654\",\"name\":\"玛曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2655,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"碌曲县\\\"]\",\"dataId\":\"\",\"id\":\"2655\",\"name\":\"碌曲县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2656,\"values\":{\"cityId\":\"311\",\"codes\":\"[\\\"夏河县\\\"]\",\"dataId\":\"\",\"id\":\"2656\",\"name\":\"夏河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2657,\"values\":{\"cityId\":\"312\",\"codes\":\"[\\\"城东区\\\"]\",\"dataId\":\"\",\"id\":\"2657\",\"name\":\"城东区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2658,\"values\":{\"cityId\":\"312\",\"codes\":\"[\\\"城西区\\\"]\",\"dataId\":\"\",\"id\":\"2658\",\"name\":\"城西区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2659,\"values\":{\"cityId\":\"312\",\"codes\":\"[\\\"城北区\\\"]\",\"dataId\":\"\",\"id\":\"2659\",\"name\":\"城北区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2660,\"values\":{\"cityId\":\"312\",\"codes\":\"[\\\"大通回族土族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2660\",\"name\":\"大通回族土族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2661,\"values\":{\"cityId\":\"312\",\"codes\":\"[\\\"湟中县\\\"]\",\"dataId\":\"\",\"id\":\"2661\",\"name\":\"湟中县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2662,\"values\":{\"cityId\":\"312\",\"codes\":\"[\\\"湟源县\\\"]\",\"dataId\":\"\",\"id\":\"2662\",\"name\":\"湟源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2663,\"values\":{\"cityId\":\"313\",\"codes\":\"[\\\"平安县\\\"]\",\"dataId\":\"\",\"id\":\"2663\",\"name\":\"平安县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2664,\"values\":{\"cityId\":\"313\",\"codes\":\"[\\\"民和回族土族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2664\",\"name\":\"民和回族土族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2665,\"values\":{\"cityId\":\"313\",\"codes\":\"[\\\"乐都县\\\"]\",\"dataId\":\"\",\"id\":\"2665\",\"name\":\"乐都县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2666,\"values\":{\"cityId\":\"313\",\"codes\":\"[\\\"互助土族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2666\",\"name\":\"互助土族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2667,\"values\":{\"cityId\":\"313\",\"codes\":\"[\\\"化隆回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2667\",\"name\":\"化隆回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2668,\"values\":{\"cityId\":\"313\",\"codes\":\"[\\\"循化撒拉族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2668\",\"name\":\"循化撒拉族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2669,\"values\":{\"cityId\":\"314\",\"codes\":\"[\\\"门源回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2669\",\"name\":\"门源回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2670,\"values\":{\"cityId\":\"314\",\"codes\":\"[\\\"祁连县\\\"]\",\"dataId\":\"\",\"id\":\"2670\",\"name\":\"祁连县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2671,\"values\":{\"cityId\":\"314\",\"codes\":\"[\\\"海晏县\\\"]\",\"dataId\":\"\",\"id\":\"2671\",\"name\":\"海晏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2672,\"values\":{\"cityId\":\"314\",\"codes\":\"[\\\"刚察县\\\"]\",\"dataId\":\"\",\"id\":\"2672\",\"name\":\"刚察县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2673,\"values\":{\"cityId\":\"315\",\"codes\":\"[\\\"同仁县\\\"]\",\"dataId\":\"\",\"id\":\"2673\",\"name\":\"同仁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2674,\"values\":{\"cityId\":\"315\",\"codes\":\"[\\\"尖扎县\\\"]\",\"dataId\":\"\",\"id\":\"2674\",\"name\":\"尖扎县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2675,\"values\":{\"cityId\":\"315\",\"codes\":\"[\\\"泽库县\\\"]\",\"dataId\":\"\",\"id\":\"2675\",\"name\":\"泽库县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2676,\"values\":{\"cityId\":\"315\",\"codes\":\"[\\\"河南蒙古族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2676\",\"name\":\"河南蒙古族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2677,\"values\":{\"cityId\":\"316\",\"codes\":\"[\\\"共和县\\\"]\",\"dataId\":\"\",\"id\":\"2677\",\"name\":\"共和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2678,\"values\":{\"cityId\":\"316\",\"codes\":\"[\\\"同德县\\\"]\",\"dataId\":\"\",\"id\":\"2678\",\"name\":\"同德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2679,\"values\":{\"cityId\":\"316\",\"codes\":\"[\\\"贵德县\\\"]\",\"dataId\":\"\",\"id\":\"2679\",\"name\":\"贵德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2680,\"values\":{\"cityId\":\"316\",\"codes\":\"[\\\"兴海县\\\"]\",\"dataId\":\"\",\"id\":\"2680\",\"name\":\"兴海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2681,\"values\":{\"cityId\":\"316\",\"codes\":\"[\\\"贵南县\\\"]\",\"dataId\":\"\",\"id\":\"2681\",\"name\":\"贵南县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2682,\"values\":{\"cityId\":\"317\",\"codes\":\"[\\\"玛沁县\\\"]\",\"dataId\":\"\",\"id\":\"2682\",\"name\":\"玛沁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2683,\"values\":{\"cityId\":\"317\",\"codes\":\"[\\\"班玛县\\\"]\",\"dataId\":\"\",\"id\":\"2683\",\"name\":\"班玛县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2684,\"values\":{\"cityId\":\"317\",\"codes\":\"[\\\"甘德县\\\"]\",\"dataId\":\"\",\"id\":\"2684\",\"name\":\"甘德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2685,\"values\":{\"cityId\":\"317\",\"codes\":\"[\\\"达日县\\\"]\",\"dataId\":\"\",\"id\":\"2685\",\"name\":\"达日县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2686,\"values\":{\"cityId\":\"317\",\"codes\":\"[\\\"久治县\\\"]\",\"dataId\":\"\",\"id\":\"2686\",\"name\":\"久治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2687,\"values\":{\"cityId\":\"317\",\"codes\":\"[\\\"玛多县\\\"]\",\"dataId\":\"\",\"id\":\"2687\",\"name\":\"玛多县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2688,\"values\":{\"cityId\":\"318\",\"codes\":\"[\\\"玉树县\\\"]\",\"dataId\":\"\",\"id\":\"2688\",\"name\":\"玉树县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2689,\"values\":{\"cityId\":\"318\",\"codes\":\"[\\\"杂多县\\\"]\",\"dataId\":\"\",\"id\":\"2689\",\"name\":\"杂多县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2690,\"values\":{\"cityId\":\"318\",\"codes\":\"[\\\"称多县\\\"]\",\"dataId\":\"\",\"id\":\"2690\",\"name\":\"称多县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2691,\"values\":{\"cityId\":\"318\",\"codes\":\"[\\\"治多县\\\"]\",\"dataId\":\"\",\"id\":\"2691\",\"name\":\"治多县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2692,\"values\":{\"cityId\":\"318\",\"codes\":\"[\\\"囊谦县\\\"]\",\"dataId\":\"\",\"id\":\"2692\",\"name\":\"囊谦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2693,\"values\":{\"cityId\":\"318\",\"codes\":\"[\\\"曲麻莱县\\\"]\",\"dataId\":\"\",\"id\":\"2693\",\"name\":\"曲麻莱县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2694,\"values\":{\"cityId\":\"319\",\"codes\":\"[\\\"格尔木市\\\"]\",\"dataId\":\"\",\"id\":\"2694\",\"name\":\"格尔木市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2695,\"values\":{\"cityId\":\"319\",\"codes\":\"[\\\"德令哈市\\\"]\",\"dataId\":\"\",\"id\":\"2695\",\"name\":\"德令哈市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2696,\"values\":{\"cityId\":\"319\",\"codes\":\"[\\\"乌兰县\\\"]\",\"dataId\":\"\",\"id\":\"2696\",\"name\":\"乌兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2697,\"values\":{\"cityId\":\"319\",\"codes\":\"[\\\"都兰县\\\"]\",\"dataId\":\"\",\"id\":\"2697\",\"name\":\"都兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2698,\"values\":{\"cityId\":\"319\",\"codes\":\"[\\\"天峻县\\\"]\",\"dataId\":\"\",\"id\":\"2698\",\"name\":\"天峻县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2699,\"values\":{\"cityId\":\"320\",\"codes\":\"[\\\"兴庆区\\\"]\",\"dataId\":\"\",\"id\":\"2699\",\"name\":\"兴庆区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2700,\"values\":{\"cityId\":\"320\",\"codes\":\"[\\\"西夏区\\\"]\",\"dataId\":\"\",\"id\":\"2700\",\"name\":\"西夏区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2701,\"values\":{\"cityId\":\"320\",\"codes\":\"[\\\"金凤区\\\"]\",\"dataId\":\"\",\"id\":\"2701\",\"name\":\"金凤区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2702,\"values\":{\"cityId\":\"320\",\"codes\":\"[\\\"永宁县\\\"]\",\"dataId\":\"\",\"id\":\"2702\",\"name\":\"永宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2703,\"values\":{\"cityId\":\"320\",\"codes\":\"[\\\"贺兰县\\\"]\",\"dataId\":\"\",\"id\":\"2703\",\"name\":\"贺兰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2704,\"values\":{\"cityId\":\"320\",\"codes\":\"[\\\"灵武市\\\"]\",\"dataId\":\"\",\"id\":\"2704\",\"name\":\"灵武市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2705,\"values\":{\"cityId\":\"321\",\"codes\":\"[\\\"大武口区\\\"]\",\"dataId\":\"\",\"id\":\"2705\",\"name\":\"大武口区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2706,\"values\":{\"cityId\":\"321\",\"codes\":\"[\\\"惠农区\\\"]\",\"dataId\":\"\",\"id\":\"2706\",\"name\":\"惠农区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2707,\"values\":{\"cityId\":\"321\",\"codes\":\"[\\\"平罗县\\\"]\",\"dataId\":\"\",\"id\":\"2707\",\"name\":\"平罗县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2708,\"values\":{\"cityId\":\"322\",\"codes\":\"[\\\"利通区\\\"]\",\"dataId\":\"\",\"id\":\"2708\",\"name\":\"利通区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2709,\"values\":{\"cityId\":\"322\",\"codes\":\"[\\\"盐池县\\\"]\",\"dataId\":\"\",\"id\":\"2709\",\"name\":\"盐池县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2710,\"values\":{\"cityId\":\"322\",\"codes\":\"[\\\"同心县\\\"]\",\"dataId\":\"\",\"id\":\"2710\",\"name\":\"同心县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2711,\"values\":{\"cityId\":\"322\",\"codes\":\"[\\\"青铜峡市\\\"]\",\"dataId\":\"\",\"id\":\"2711\",\"name\":\"青铜峡市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2712,\"values\":{\"cityId\":\"323\",\"codes\":\"[\\\"原州区\\\"]\",\"dataId\":\"\",\"id\":\"2712\",\"name\":\"原州区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2713,\"values\":{\"cityId\":\"323\",\"codes\":\"[\\\"西吉县\\\"]\",\"dataId\":\"\",\"id\":\"2713\",\"name\":\"西吉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2714,\"values\":{\"cityId\":\"323\",\"codes\":\"[\\\"隆德县\\\"]\",\"dataId\":\"\",\"id\":\"2714\",\"name\":\"隆德县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2715,\"values\":{\"cityId\":\"323\",\"codes\":\"[\\\"泾源县\\\"]\",\"dataId\":\"\",\"id\":\"2715\",\"name\":\"泾源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2716,\"values\":{\"cityId\":\"323\",\"codes\":\"[\\\"彭阳县\\\"]\",\"dataId\":\"\",\"id\":\"2716\",\"name\":\"彭阳县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2717,\"values\":{\"cityId\":\"324\",\"codes\":\"[\\\"沙坡头区\\\"]\",\"dataId\":\"\",\"id\":\"2717\",\"name\":\"沙坡头区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2718,\"values\":{\"cityId\":\"324\",\"codes\":\"[\\\"中宁县\\\"]\",\"dataId\":\"\",\"id\":\"2718\",\"name\":\"中宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2719,\"values\":{\"cityId\":\"324\",\"codes\":\"[\\\"海原县\\\"]\",\"dataId\":\"\",\"id\":\"2719\",\"name\":\"海原县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2720,\"values\":{\"cityId\":\"325\",\"codes\":\"[\\\"天山区\\\"]\",\"dataId\":\"\",\"id\":\"2720\",\"name\":\"天山区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2721,\"values\":{\"cityId\":\"325\",\"codes\":\"[\\\"沙依巴克区\\\"]\",\"dataId\":\"\",\"id\":\"2721\",\"name\":\"沙依巴克区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2722,\"values\":{\"cityId\":\"325\",\"codes\":\"[\\\"水磨沟区\\\"]\",\"dataId\":\"\",\"id\":\"2722\",\"name\":\"水磨沟区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2723,\"values\":{\"cityId\":\"325\",\"codes\":\"[\\\"头屯河区\\\"]\",\"dataId\":\"\",\"id\":\"2723\",\"name\":\"头屯河区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2724,\"values\":{\"cityId\":\"325\",\"codes\":\"[\\\"达坂城区\\\"]\",\"dataId\":\"\",\"id\":\"2724\",\"name\":\"达坂城区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2725,\"values\":{\"cityId\":\"325\",\"codes\":\"[\\\"乌鲁木齐县\\\"]\",\"dataId\":\"\",\"id\":\"2725\",\"name\":\"乌鲁木齐县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2726,\"values\":{\"cityId\":\"326\",\"codes\":\"[\\\"独山子区\\\"]\",\"dataId\":\"\",\"id\":\"2726\",\"name\":\"独山子区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2727,\"values\":{\"cityId\":\"326\",\"codes\":\"[\\\"克拉玛依区\\\"]\",\"dataId\":\"\",\"id\":\"2727\",\"name\":\"克拉玛依区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2728,\"values\":{\"cityId\":\"326\",\"codes\":\"[\\\"白碱滩区\\\"]\",\"dataId\":\"\",\"id\":\"2728\",\"name\":\"白碱滩区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2729,\"values\":{\"cityId\":\"326\",\"codes\":\"[\\\"乌尔禾区\\\"]\",\"dataId\":\"\",\"id\":\"2729\",\"name\":\"乌尔禾区\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2730,\"values\":{\"cityId\":\"327\",\"codes\":\"[\\\"吐鲁番市\\\"]\",\"dataId\":\"\",\"id\":\"2730\",\"name\":\"吐鲁番市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2731,\"values\":{\"cityId\":\"327\",\"codes\":\"[\\\"鄯善县\\\"]\",\"dataId\":\"\",\"id\":\"2731\",\"name\":\"鄯善县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2732,\"values\":{\"cityId\":\"327\",\"codes\":\"[\\\"托克逊县\\\"]\",\"dataId\":\"\",\"id\":\"2732\",\"name\":\"托克逊县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2733,\"values\":{\"cityId\":\"328\",\"codes\":\"[\\\"哈密市\\\"]\",\"dataId\":\"\",\"id\":\"2733\",\"name\":\"哈密市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2734,\"values\":{\"cityId\":\"328\",\"codes\":\"[\\\"巴里坤哈萨克自治县\\\"]\",\"dataId\":\"\",\"id\":\"2734\",\"name\":\"巴里坤哈萨克自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2735,\"values\":{\"cityId\":\"328\",\"codes\":\"[\\\"伊吾县\\\"]\",\"dataId\":\"\",\"id\":\"2735\",\"name\":\"伊吾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2736,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"昌吉市\\\"]\",\"dataId\":\"\",\"id\":\"2736\",\"name\":\"昌吉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2737,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"阜康市\\\"]\",\"dataId\":\"\",\"id\":\"2737\",\"name\":\"阜康市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2738,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"米泉市\\\"]\",\"dataId\":\"\",\"id\":\"2738\",\"name\":\"米泉市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2739,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"呼图壁县\\\"]\",\"dataId\":\"\",\"id\":\"2739\",\"name\":\"呼图壁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2740,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"玛纳斯县\\\"]\",\"dataId\":\"\",\"id\":\"2740\",\"name\":\"玛纳斯县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2741,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"奇台县\\\"]\",\"dataId\":\"\",\"id\":\"2741\",\"name\":\"奇台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2742,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"吉木萨尔县\\\"]\",\"dataId\":\"\",\"id\":\"2742\",\"name\":\"吉木萨尔县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2743,\"values\":{\"cityId\":\"329\",\"codes\":\"[\\\"木垒哈萨克自治县\\\"]\",\"dataId\":\"\",\"id\":\"2743\",\"name\":\"木垒哈萨克自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2744,\"values\":{\"cityId\":\"330\",\"codes\":\"[\\\"博乐市\\\"]\",\"dataId\":\"\",\"id\":\"2744\",\"name\":\"博乐市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2745,\"values\":{\"cityId\":\"330\",\"codes\":\"[\\\"精河县\\\"]\",\"dataId\":\"\",\"id\":\"2745\",\"name\":\"精河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2746,\"values\":{\"cityId\":\"330\",\"codes\":\"[\\\"温泉县\\\"]\",\"dataId\":\"\",\"id\":\"2746\",\"name\":\"温泉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2747,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"库尔勒市\\\"]\",\"dataId\":\"\",\"id\":\"2747\",\"name\":\"库尔勒市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2748,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"轮台县\\\"]\",\"dataId\":\"\",\"id\":\"2748\",\"name\":\"轮台县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2749,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"尉犁县\\\"]\",\"dataId\":\"\",\"id\":\"2749\",\"name\":\"尉犁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2750,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"若羌县\\\"]\",\"dataId\":\"\",\"id\":\"2750\",\"name\":\"若羌县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2751,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"且末县\\\"]\",\"dataId\":\"\",\"id\":\"2751\",\"name\":\"且末县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2752,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"焉耆回族自治县\\\"]\",\"dataId\":\"\",\"id\":\"2752\",\"name\":\"焉耆回族自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2753,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"和静县\\\"]\",\"dataId\":\"\",\"id\":\"2753\",\"name\":\"和静县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2754,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"和硕县\\\"]\",\"dataId\":\"\",\"id\":\"2754\",\"name\":\"和硕县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2755,\"values\":{\"cityId\":\"331\",\"codes\":\"[\\\"博湖县\\\"]\",\"dataId\":\"\",\"id\":\"2755\",\"name\":\"博湖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2756,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"阿克苏市\\\"]\",\"dataId\":\"\",\"id\":\"2756\",\"name\":\"阿克苏市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2757,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"温宿县\\\"]\",\"dataId\":\"\",\"id\":\"2757\",\"name\":\"温宿县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2758,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"库车县\\\"]\",\"dataId\":\"\",\"id\":\"2758\",\"name\":\"库车县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2759,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"沙雅县\\\"]\",\"dataId\":\"\",\"id\":\"2759\",\"name\":\"沙雅县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2760,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"新和县\\\"]\",\"dataId\":\"\",\"id\":\"2760\",\"name\":\"新和县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2761,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"拜城县\\\"]\",\"dataId\":\"\",\"id\":\"2761\",\"name\":\"拜城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2762,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"乌什县\\\"]\",\"dataId\":\"\",\"id\":\"2762\",\"name\":\"乌什县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2763,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"阿瓦提县\\\"]\",\"dataId\":\"\",\"id\":\"2763\",\"name\":\"阿瓦提县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2764,\"values\":{\"cityId\":\"332\",\"codes\":\"[\\\"柯坪县\\\"]\",\"dataId\":\"\",\"id\":\"2764\",\"name\":\"柯坪县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2765,\"values\":{\"cityId\":\"333\",\"codes\":\"[\\\"阿图什市\\\"]\",\"dataId\":\"\",\"id\":\"2765\",\"name\":\"阿图什市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2766,\"values\":{\"cityId\":\"333\",\"codes\":\"[\\\"阿克陶县\\\"]\",\"dataId\":\"\",\"id\":\"2766\",\"name\":\"阿克陶县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2767,\"values\":{\"cityId\":\"333\",\"codes\":\"[\\\"阿合奇县\\\"]\",\"dataId\":\"\",\"id\":\"2767\",\"name\":\"阿合奇县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2768,\"values\":{\"cityId\":\"333\",\"codes\":\"[\\\"乌恰县\\\"]\",\"dataId\":\"\",\"id\":\"2768\",\"name\":\"乌恰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2769,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"喀什市\\\"]\",\"dataId\":\"\",\"id\":\"2769\",\"name\":\"喀什市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2770,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"疏附县\\\"]\",\"dataId\":\"\",\"id\":\"2770\",\"name\":\"疏附县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2771,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"疏勒县\\\"]\",\"dataId\":\"\",\"id\":\"2771\",\"name\":\"疏勒县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2772,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"英吉沙县\\\"]\",\"dataId\":\"\",\"id\":\"2772\",\"name\":\"英吉沙县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2773,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"泽普县\\\"]\",\"dataId\":\"\",\"id\":\"2773\",\"name\":\"泽普县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2774,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"莎车县\\\"]\",\"dataId\":\"\",\"id\":\"2774\",\"name\":\"莎车县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2775,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"叶城县\\\"]\",\"dataId\":\"\",\"id\":\"2775\",\"name\":\"叶城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2776,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"麦盖提县\\\"]\",\"dataId\":\"\",\"id\":\"2776\",\"name\":\"麦盖提县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2777,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"岳普湖县\\\"]\",\"dataId\":\"\",\"id\":\"2777\",\"name\":\"岳普湖县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2778,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"伽师县\\\"]\",\"dataId\":\"\",\"id\":\"2778\",\"name\":\"伽师县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2779,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"巴楚县\\\"]\",\"dataId\":\"\",\"id\":\"2779\",\"name\":\"巴楚县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2780,\"values\":{\"cityId\":\"334\",\"codes\":\"[\\\"塔什库尔干塔吉克自治县\\\"]\",\"dataId\":\"\",\"id\":\"2780\",\"name\":\"塔什库尔干塔吉克自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2781,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"和田市\\\"]\",\"dataId\":\"\",\"id\":\"2781\",\"name\":\"和田市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2782,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"和田县\\\"]\",\"dataId\":\"\",\"id\":\"2782\",\"name\":\"和田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2783,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"墨玉县\\\"]\",\"dataId\":\"\",\"id\":\"2783\",\"name\":\"墨玉县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2784,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"皮山县\\\"]\",\"dataId\":\"\",\"id\":\"2784\",\"name\":\"皮山县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2785,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"洛浦县\\\"]\",\"dataId\":\"\",\"id\":\"2785\",\"name\":\"洛浦县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2786,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"策勒县\\\"]\",\"dataId\":\"\",\"id\":\"2786\",\"name\":\"策勒县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2787,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"于田县\\\"]\",\"dataId\":\"\",\"id\":\"2787\",\"name\":\"于田县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2788,\"values\":{\"cityId\":\"335\",\"codes\":\"[\\\"民丰县\\\"]\",\"dataId\":\"\",\"id\":\"2788\",\"name\":\"民丰县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2789,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"伊宁市\\\"]\",\"dataId\":\"\",\"id\":\"2789\",\"name\":\"伊宁市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2790,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"奎屯市\\\"]\",\"dataId\":\"\",\"id\":\"2790\",\"name\":\"奎屯市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2791,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"伊宁县\\\"]\",\"dataId\":\"\",\"id\":\"2791\",\"name\":\"伊宁县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2792,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"察布查尔锡伯自治县\\\"]\",\"dataId\":\"\",\"id\":\"2792\",\"name\":\"察布查尔锡伯自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2793,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"霍城县\\\"]\",\"dataId\":\"\",\"id\":\"2793\",\"name\":\"霍城县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2794,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"巩留县\\\"]\",\"dataId\":\"\",\"id\":\"2794\",\"name\":\"巩留县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2795,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"新源县\\\"]\",\"dataId\":\"\",\"id\":\"2795\",\"name\":\"新源县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2796,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"昭苏县\\\"]\",\"dataId\":\"\",\"id\":\"2796\",\"name\":\"昭苏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2797,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"特克斯县\\\"]\",\"dataId\":\"\",\"id\":\"2797\",\"name\":\"特克斯县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2798,\"values\":{\"cityId\":\"336\",\"codes\":\"[\\\"尼勒克县\\\"]\",\"dataId\":\"\",\"id\":\"2798\",\"name\":\"尼勒克县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2799,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"塔城市\\\"]\",\"dataId\":\"\",\"id\":\"2799\",\"name\":\"塔城市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2800,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"乌苏市\\\"]\",\"dataId\":\"\",\"id\":\"2800\",\"name\":\"乌苏市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2801,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"额敏县\\\"]\",\"dataId\":\"\",\"id\":\"2801\",\"name\":\"额敏县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2802,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"沙湾县\\\"]\",\"dataId\":\"\",\"id\":\"2802\",\"name\":\"沙湾县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2803,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"托里县\\\"]\",\"dataId\":\"\",\"id\":\"2803\",\"name\":\"托里县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2804,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"裕民县\\\"]\",\"dataId\":\"\",\"id\":\"2804\",\"name\":\"裕民县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2805,\"values\":{\"cityId\":\"337\",\"codes\":\"[\\\"和布克赛尔蒙古自治县\\\"]\",\"dataId\":\"\",\"id\":\"2805\",\"name\":\"和布克赛尔蒙古自治县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2806,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"阿勒泰市\\\"]\",\"dataId\":\"\",\"id\":\"2806\",\"name\":\"阿勒泰市\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2807,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"布尔津县\\\"]\",\"dataId\":\"\",\"id\":\"2807\",\"name\":\"布尔津县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2808,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"富蕴县\\\"]\",\"dataId\":\"\",\"id\":\"2808\",\"name\":\"富蕴县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2809,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"福海县\\\"]\",\"dataId\":\"\",\"id\":\"2809\",\"name\":\"福海县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2810,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"哈巴河县\\\"]\",\"dataId\":\"\",\"id\":\"2810\",\"name\":\"哈巴河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2811,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"青河县\\\"]\",\"dataId\":\"\",\"id\":\"2811\",\"name\":\"青河县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]},{\"id\":2812,\"values\":{\"cityId\":\"338\",\"codes\":\"[\\\"吉木乃县\\\"]\",\"dataId\":\"\",\"id\":\"2812\",\"name\":\"吉木乃县\",\"state\":\"1\"},\"uniqueFields\":[\"name\",\"cityId\"],\"exceptFields\":[\"customName\",\"customCodes\"]}]},{\"name\":\"edgeReportNodeGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeReportNodeGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(128) DEFAULT NULL COMMENT '名称',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='监控终端区域'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(128) COMMENT '名称'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeReportNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeReportNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(128) DEFAULT NULL COMMENT '名称',\\n `location` varchar(255) DEFAULT NULL COMMENT '所在区域',\\n `isp` varchar(128) DEFAULT NULL COMMENT '网络服务商',\\n `allowIPs` json DEFAULT NULL COMMENT '允许的IP',\\n `isActive` tinyint(1) unsigned DEFAULT '0' COMMENT '是否活跃',\\n `status` json DEFAULT NULL COMMENT '状态',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `groupIds` json DEFAULT NULL COMMENT '分组ID',\\n PRIMARY KEY (`id`),\\n KEY `uniqueId` (`uniqueId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='连通性报告终端'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(128) COMMENT '名称'\"},{\"name\":\"location\",\"definition\":\"varchar(255) COMMENT '所在区域'\"},{\"name\":\"isp\",\"definition\":\"varchar(128) COMMENT '网络服务商'\"},{\"name\":\"allowIPs\",\"definition\":\"json COMMENT '允许的IP'\"},{\"name\":\"isActive\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否活跃'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '状态'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"groupIds\",\"definition\":\"json COMMENT '分组ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"KEY `uniqueId` (`uniqueId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeReportResults\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeReportResults` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `type` varchar(64) DEFAULT NULL COMMENT '对象类型',\\n `targetId` bigint(11) unsigned DEFAULT '0' COMMENT '对象ID',\\n `targetDesc` varchar(255) DEFAULT NULL COMMENT '对象描述',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '更新时间',\\n `reportNodeId` int(11) unsigned DEFAULT '0' COMMENT '监控节点ID',\\n `isOk` tinyint(1) unsigned DEFAULT '1' COMMENT '是否可连接',\\n `level` varchar(32) DEFAULT NULL COMMENT '级别',\\n `costMs` decimal(11,2) DEFAULT '0.00' COMMENT '单次连接花费的时间',\\n `error` varchar(512) DEFAULT NULL COMMENT '产生的错误信息',\\n `countUp` int(11) unsigned DEFAULT '0' COMMENT '连续上线次数',\\n `countDown` int(11) unsigned DEFAULT '0' COMMENT '连续下线次数',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`reportNodeId`,`type`,`targetId`) USING BTREE,\\n KEY `target` (`type`,`targetId`),\\n KEY `reportNodeId` (`reportNodeId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='连通性监控结果'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '对象类型'\"},{\"name\":\"targetId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '对象ID'\"},{\"name\":\"targetDesc\",\"definition\":\"varchar(255) COMMENT '对象描述'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '更新时间'\"},{\"name\":\"reportNodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '监控节点ID'\"},{\"name\":\"isOk\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否可连接'\"},{\"name\":\"level\",\"definition\":\"varchar(32) COMMENT '级别'\"},{\"name\":\"costMs\",\"definition\":\"decimal(11,2) DEFAULT '0.00' COMMENT '单次连接花费的时间'\"},{\"name\":\"error\",\"definition\":\"varchar(512) COMMENT '产生的错误信息'\"},{\"name\":\"countUp\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '连续上线次数'\"},{\"name\":\"countDown\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '连续下线次数'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`reportNodeId`,`type`,`targetId`) USING BTREE\"},{\"name\":\"target\",\"definition\":\"KEY `target` (`type`,`targetId`) USING BTREE\"},{\"name\":\"reportNodeId\",\"definition\":\"KEY `reportNodeId` (`reportNodeId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeReverseProxies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeReverseProxies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `scheduling` json DEFAULT NULL COMMENT '调度算法',\\n `primaryOrigins` json DEFAULT NULL COMMENT '主要源站',\\n `backupOrigins` json DEFAULT NULL COMMENT '备用源站',\\n `stripPrefix` varchar(255) DEFAULT NULL COMMENT '去除URL前缀',\\n `requestHostType` tinyint(1) unsigned DEFAULT '0' COMMENT '请求Host类型',\\n `requestHost` varchar(255) DEFAULT NULL COMMENT '请求Host',\\n `requestHostExcludingPort` tinyint(1) unsigned DEFAULT '0' COMMENT '移除请求Host中的域名',\\n `requestURI` varchar(1024) DEFAULT NULL COMMENT '请求URI',\\n `autoFlush` tinyint(1) unsigned DEFAULT '0' COMMENT '是否自动刷新缓冲区',\\n `addHeaders` json DEFAULT NULL COMMENT '自动添加的Header列表',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `connTimeout` json DEFAULT NULL COMMENT '连接超时时间',\\n `readTimeout` json DEFAULT NULL COMMENT '读取超时时间',\\n `idleTimeout` json DEFAULT NULL COMMENT '空闲超时时间',\\n `maxConns` int(11) unsigned DEFAULT '0' COMMENT '最大并发连接数',\\n `maxIdleConns` int(11) unsigned DEFAULT '0' COMMENT '最大空闲连接数',\\n `proxyProtocol` json DEFAULT NULL COMMENT 'Proxy Protocol配置',\\n `followRedirects` tinyint(1) unsigned DEFAULT '0' COMMENT '回源跟随',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='反向代理配置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"scheduling\",\"definition\":\"json COMMENT '调度算法'\"},{\"name\":\"primaryOrigins\",\"definition\":\"json COMMENT '主要源站'\"},{\"name\":\"backupOrigins\",\"definition\":\"json COMMENT '备用源站'\"},{\"name\":\"stripPrefix\",\"definition\":\"varchar(255) COMMENT '去除URL前缀'\"},{\"name\":\"requestHostType\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '请求Host类型'\"},{\"name\":\"requestHost\",\"definition\":\"varchar(255) COMMENT '请求Host'\"},{\"name\":\"requestHostExcludingPort\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '移除请求Host中的域名'\"},{\"name\":\"requestURI\",\"definition\":\"varchar(1024) COMMENT '请求URI'\"},{\"name\":\"autoFlush\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否自动刷新缓冲区'\"},{\"name\":\"addHeaders\",\"definition\":\"json COMMENT '自动添加的Header列表'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"connTimeout\",\"definition\":\"json COMMENT '连接超时时间'\"},{\"name\":\"readTimeout\",\"definition\":\"json COMMENT '读取超时时间'\"},{\"name\":\"idleTimeout\",\"definition\":\"json COMMENT '空闲超时时间'\"},{\"name\":\"maxConns\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最大并发连接数'\"},{\"name\":\"maxIdleConns\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '最大空闲连接数'\"},{\"name\":\"proxyProtocol\",\"definition\":\"json COMMENT 'Proxy Protocol配置'\"},{\"name\":\"followRedirects\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '回源跟随'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSSLCertGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSSLCertGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '分组名',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '分组排序',\\n `state` tinyint(1) unsigned DEFAULT '0' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='证书分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '分组名'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '分组排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSSLCerts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSSLCerts` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '证书名',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `certData` blob COMMENT '证书内容',\\n `keyData` blob COMMENT '密钥内容',\\n `serverName` varchar(255) DEFAULT NULL COMMENT '证书使用的主机名',\\n `isCA` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为CA证书',\\n `groupIds` json DEFAULT NULL COMMENT '证书分组',\\n `timeBeginAt` bigint(11) unsigned DEFAULT '0' COMMENT '开始时间',\\n `timeEndAt` bigint(11) unsigned DEFAULT '0' COMMENT '结束时间',\\n `dnsNames` json DEFAULT NULL COMMENT 'DNS名称列表',\\n `commonNames` json DEFAULT NULL COMMENT '发行单位列表',\\n `isACME` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为ACME自动生成的',\\n `acmeTaskId` bigint(11) unsigned DEFAULT '0' COMMENT 'ACME任务ID',\\n `notifiedAt` bigint(11) unsigned DEFAULT '0' COMMENT '最后通知时间',\\n `ocsp` blob COMMENT 'OCSP缓存',\\n `ocspIsUpdated` tinyint(1) unsigned DEFAULT '0' COMMENT 'OCSP是否已更新',\\n `ocspUpdatedAt` bigint(11) unsigned DEFAULT '0' COMMENT 'OCSP更新时间',\\n `ocspError` varchar(512) DEFAULT NULL COMMENT 'OCSP更新错误',\\n `ocspUpdatedVersion` bigint(20) unsigned DEFAULT '0' COMMENT 'OCSP更新版本',\\n `ocspExpiresAt` bigint(11) unsigned DEFAULT '0' COMMENT 'OCSP过期时间(UTC)',\\n `ocspTries` int(11) unsigned DEFAULT '0' COMMENT 'OCSP尝试次数',\\n PRIMARY KEY (`id`),\\n KEY `adminId` (`adminId`),\\n KEY `userId` (`userId`),\\n KEY `ocspIsUpdated` (`ocspIsUpdated`),\\n KEY `ocspUpdatedAt` (`ocspUpdatedAt`),\\n KEY `ocspUpdatedVersion` (`ocspUpdatedVersion`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='SSL证书'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '证书名'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"certData\",\"definition\":\"blob COMMENT '证书内容'\"},{\"name\":\"keyData\",\"definition\":\"blob COMMENT '密钥内容'\"},{\"name\":\"serverName\",\"definition\":\"varchar(255) COMMENT '证书使用的主机名'\"},{\"name\":\"isCA\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为CA证书'\"},{\"name\":\"groupIds\",\"definition\":\"json COMMENT '证书分组'\"},{\"name\":\"timeBeginAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '开始时间'\"},{\"name\":\"timeEndAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '结束时间'\"},{\"name\":\"dnsNames\",\"definition\":\"json COMMENT 'DNS名称列表'\"},{\"name\":\"commonNames\",\"definition\":\"json COMMENT '发行单位列表'\"},{\"name\":\"isACME\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为ACME自动生成的'\"},{\"name\":\"acmeTaskId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT 'ACME任务ID'\"},{\"name\":\"notifiedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '最后通知时间'\"},{\"name\":\"ocsp\",\"definition\":\"blob COMMENT 'OCSP缓存'\"},{\"name\":\"ocspIsUpdated\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT 'OCSP是否已更新'\"},{\"name\":\"ocspUpdatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT 'OCSP更新时间'\"},{\"name\":\"ocspError\",\"definition\":\"varchar(512) COMMENT 'OCSP更新错误'\"},{\"name\":\"ocspUpdatedVersion\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT 'OCSP更新版本'\"},{\"name\":\"ocspExpiresAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT 'OCSP过期时间(UTC)'\"},{\"name\":\"ocspTries\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'OCSP尝试次数'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"adminId\",\"definition\":\"KEY `adminId` (`adminId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"ocspIsUpdated\",\"definition\":\"KEY `ocspIsUpdated` (`ocspIsUpdated`) USING BTREE\"},{\"name\":\"ocspUpdatedAt\",\"definition\":\"KEY `ocspUpdatedAt` (`ocspUpdatedAt`) USING BTREE\"},{\"name\":\"ocspUpdatedVersion\",\"definition\":\"KEY `ocspUpdatedVersion` (`ocspUpdatedVersion`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSSLPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSSLPolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `certs` json DEFAULT NULL COMMENT '证书列表',\\n `clientCACerts` json DEFAULT NULL COMMENT '客户端证书',\\n `clientAuthType` int(11) unsigned DEFAULT '0' COMMENT '客户端认证类型',\\n `minVersion` varchar(32) DEFAULT NULL COMMENT '支持的SSL最小版本',\\n `cipherSuitesIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否自定义加密算法套件',\\n `cipherSuites` json DEFAULT NULL COMMENT '加密算法套件',\\n `hsts` json DEFAULT NULL COMMENT 'HSTS设置',\\n `http2Enabled` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用HTTP/2',\\n `ocspIsOn` tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用OCSP',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `ocspIsOn` (`ocspIsOn`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='SSL配置策略'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"certs\",\"definition\":\"json COMMENT '证书列表'\"},{\"name\":\"clientCACerts\",\"definition\":\"json COMMENT '客户端证书'\"},{\"name\":\"clientAuthType\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '客户端认证类型'\"},{\"name\":\"minVersion\",\"definition\":\"varchar(32) COMMENT '支持的SSL最小版本'\"},{\"name\":\"cipherSuitesIsOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否自定义加密算法套件'\"},{\"name\":\"cipherSuites\",\"definition\":\"json COMMENT '加密算法套件'\"},{\"name\":\"hsts\",\"definition\":\"json COMMENT 'HSTS设置'\"},{\"name\":\"http2Enabled\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用HTTP/2'\"},{\"name\":\"ocspIsOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否启用OCSP'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"ocspIsOn\",\"definition\":\"KEY `ocspIsOn` (`ocspIsOn`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeScriptHistories\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeScriptHistories` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `scriptId` bigint(11) unsigned DEFAULT '0' COMMENT '脚本ID',\\n `filename` varchar(255) DEFAULT NULL COMMENT '文件名',\\n `code` text COMMENT '代码',\\n `version` bigint(11) unsigned DEFAULT '0' COMMENT '版本号',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `scriptId` (`scriptId`),\\n KEY `version` (`version`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='脚本历史记录'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"scriptId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '脚本ID'\"},{\"name\":\"filename\",\"definition\":\"varchar(255) COMMENT '文件名'\"},{\"name\":\"code\",\"definition\":\"text COMMENT '代码'\"},{\"name\":\"version\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '版本号'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"scriptId\",\"definition\":\"KEY `scriptId` (`scriptId`) USING BTREE\"},{\"name\":\"version\",\"definition\":\"KEY `version` (`version`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeScripts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeScripts` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `filename` varchar(255) DEFAULT NULL COMMENT '文件名',\\n `code` text COMMENT '代码',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='脚本库'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"filename\",\"definition\":\"varchar(255) COMMENT '文件名'\"},{\"name\":\"code\",\"definition\":\"text COMMENT '代码'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `userId` (`userId`),\\n KEY `day` (`day`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_0\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_0` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_1\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_1` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_10\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_10` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_11\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_11` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_12\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_12` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_13\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_13` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_14\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_14` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户 ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户 ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_15\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_15` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_16\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_16` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_17\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_17` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_18\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_18` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_19\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_19` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_2\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_2` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_3\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_3` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `userId` (`userId`),\\n KEY `day` (`day`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_4\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_4` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_5\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_5` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_6\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_6` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_7\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_7` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_8\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_8` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBandwidthStats_9\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBandwidthStats_9` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` bigint(20) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHMM',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务峰值带宽统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHMM'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽字节'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"server_day_time_region\",\"definition\":\"UNIQUE KEY `server_day_time_region` (`serverId`,`day`,`timeAt`,`regionId`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerBills\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerBills` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `amount` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '金额',\\n `month` varchar(6) DEFAULT NULL COMMENT '月份',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `userPlanId` int(11) unsigned DEFAULT '0' COMMENT '用户套餐ID',\\n `planId` int(11) unsigned DEFAULT '0' COMMENT '套餐ID',\\n `totalTrafficBytes` bigint(20) unsigned DEFAULT '0' COMMENT '总流量',\\n `bandwidthPercentileBytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽百分位字节',\\n `bandwidthPercentile` tinyint(2) unsigned DEFAULT '0' COMMENT '带宽百分位',\\n `priceType` varchar(128) DEFAULT NULL COMMENT '计费类型',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `serverId_month` (`serverId`,`month`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务账单'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"amount\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '金额'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT '月份'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"userPlanId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户套餐ID'\"},{\"name\":\"planId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '套餐ID'\"},{\"name\":\"totalTrafficBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '总流量'\"},{\"name\":\"bandwidthPercentileBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽百分位字节'\"},{\"name\":\"bandwidthPercentile\",\"definition\":\"tinyint(2) unsigned DEFAULT '0' COMMENT '带宽百分位'\"},{\"name\":\"priceType\",\"definition\":\"varchar(128) COMMENT '计费类型'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"serverId_month\",\"definition\":\"UNIQUE KEY `serverId_month` (`serverId`,`month`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerClientBrowserMonthlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerClientBrowserMonthlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `browserId` int(11) unsigned DEFAULT '0' COMMENT '浏览器ID',\\n `month` varchar(6) DEFAULT NULL COMMENT 'YYYYMM',\\n `version` varchar(255) DEFAULT NULL COMMENT '主版本号',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`serverId`,`browserId`,`version`,`month`) USING BTREE,\\n KEY `serverId` (`serverId`),\\n KEY `month` (`month`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='浏览器统计(按月)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"browserId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '浏览器ID'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT 'YYYYMM'\"},{\"name\":\"version\",\"definition\":\"varchar(255) COMMENT '主版本号'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`serverId`,`browserId`,`version`,`month`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerClientSystemMonthlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerClientSystemMonthlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `systemId` int(11) unsigned DEFAULT '0' COMMENT '系统ID',\\n `version` varchar(255) DEFAULT NULL COMMENT '主版本号',\\n `month` varchar(6) DEFAULT NULL COMMENT 'YYYYMM',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`serverId`,`systemId`,`version`,`month`) USING BTREE,\\n KEY `serverId` (`serverId`),\\n KEY `month` (`month`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='操作系统统计(按月)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"systemId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '系统ID'\"},{\"name\":\"version\",\"definition\":\"varchar(255) COMMENT '主版本号'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT 'YYYYMM'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`serverId`,`systemId`,`version`,`month`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDailyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存的流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `timeFrom` varchar(6) DEFAULT NULL COMMENT '开始时间HHMMSS',\\n `timeTo` varchar(6) DEFAULT NULL COMMENT '结束时间',\\n `isCharged` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已计算费用',\\n `planId` bigint(11) unsigned DEFAULT '0' COMMENT '套餐ID',\\n `fee` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '费用',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `sererId_regionId_day_timeFrom` (`serverId`,`regionId`,`day`,`timeFrom`),\\n KEY `serverId_day` (`serverId`,`day`) USING BTREE,\\n KEY `isCharged` (`isCharged`),\\n KEY `userId` (`userId`),\\n KEY `day_plan` (`day`,`planId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='计费流量统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存的流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存的请求数'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"timeFrom\",\"definition\":\"varchar(6) COMMENT '开始时间HHMMSS'\"},{\"name\":\"timeTo\",\"definition\":\"varchar(6) COMMENT '结束时间'\"},{\"name\":\"isCharged\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已计算费用'\"},{\"name\":\"planId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '套餐ID'\"},{\"name\":\"fee\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '费用'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"sererId_regionId_day_timeFrom\",\"definition\":\"UNIQUE KEY `sererId_regionId_day_timeFrom` (`serverId`,`regionId`,`day`,`timeFrom`) USING BTREE\"},{\"name\":\"serverId_day\",\"definition\":\"KEY `serverId_day` (`serverId`,`day`) USING BTREE\"},{\"name\":\"isCharged\",\"definition\":\"KEY `isCharged` (`isCharged`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"day_plan\",\"definition\":\"KEY `day_plan` (`day`,`planId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_0\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_0` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_1\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_1` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_2\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_2` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_3\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_3` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_4\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_4` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_5\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_5` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_6\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_6` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_7\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_7` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_8\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_8` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_9\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_9` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_a\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_a` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_b\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_b` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_c\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_c` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_d\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_d` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_e\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_e` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_f\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_f` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_g\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_g` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_h\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_h` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_i\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_i` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_j\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_j` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_k\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_k` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_l\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_l` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_m\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_m` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_n\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_n` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_o\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_o` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_p\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_p` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_q\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_q` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_r\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_r` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_s\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_s` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_t\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_t` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_u\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_u` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_v\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_v` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_w\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_w` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_x\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_x` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_y\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_y` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerDomainHourlyStats_z\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerDomainHourlyStats_z` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `nodeId` int(11) unsigned DEFAULT '0' COMMENT '节点ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `domain` varchar(255) DEFAULT NULL COMMENT '域名',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '流量',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE,\\n KEY `clusterId` (`clusterId`),\\n KEY `serverId` (`serverId`),\\n KEY `nodeId` (`nodeId`),\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务域名统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"nodeId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '节点ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"domain\",\"definition\":\"varchar(255) COMMENT '域名'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '流量'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击请求数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"domain_hour\",\"definition\":\"UNIQUE KEY `domain_hour` (`clusterId`,`serverId`,`domain`,`hour`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"},{\"name\":\"nodeId\",\"definition\":\"KEY `nodeId` (`nodeId`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerGroups\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerGroups` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `httpReverseProxy` json DEFAULT NULL COMMENT '反向代理设置',\\n `tcpReverseProxy` json DEFAULT NULL COMMENT 'TCP反向代理',\\n `udpReverseProxy` json DEFAULT NULL COMMENT 'UDP反向代理',\\n `webId` int(11) unsigned DEFAULT '0' COMMENT 'Web配置ID',\\n PRIMARY KEY (`id`),\\n KEY `webId` (`webId`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务分组'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"httpReverseProxy\",\"definition\":\"json COMMENT '反向代理设置'\"},{\"name\":\"tcpReverseProxy\",\"definition\":\"json COMMENT 'TCP反向代理'\"},{\"name\":\"udpReverseProxy\",\"definition\":\"json COMMENT 'UDP反向代理'\"},{\"name\":\"webId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'Web配置ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"webId\",\"definition\":\"KEY `webId` (`webId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerHTTPFirewallDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerHTTPFirewallDailyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `httpFirewallRuleGroupId` int(11) unsigned DEFAULT '0' COMMENT 'WAF分组ID',\\n `action` varchar(64) DEFAULT NULL COMMENT '采取的动作',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`serverId`,`day`,`httpFirewallRuleGroupId`,`action`) USING BTREE,\\n KEY `day` (`day`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='WAF统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"httpFirewallRuleGroupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF分组ID'\"},{\"name\":\"action\",\"definition\":\"varchar(64) COMMENT '采取的动作'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`serverId`,`day`,`httpFirewallRuleGroupId`,`action`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerHTTPFirewallHourlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerHTTPFirewallHourlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `httpFirewallRuleGroupId` int(11) unsigned DEFAULT '0' COMMENT 'WAF分组ID',\\n `action` varchar(64) DEFAULT NULL COMMENT '采取的动作',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`serverId`,`hour`,`httpFirewallRuleGroupId`,`action`) USING BTREE,\\n KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='WAF统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"httpFirewallRuleGroupId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WAF分组ID'\"},{\"name\":\"action\",\"definition\":\"varchar(64) COMMENT '采取的动作'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`serverId`,`hour`,`httpFirewallRuleGroupId`,`action`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerRegionCityMonthlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerRegionCityMonthlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `cityId` int(11) unsigned DEFAULT '0' COMMENT '城市ID',\\n `month` varchar(6) DEFAULT NULL COMMENT '月份YYYYMM',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `unique_id` (`serverId`,`cityId`,`month`) USING BTREE,\\n KEY `month` (`month`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务用户省份分布统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"cityId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '城市ID'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT '月份YYYYMM'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"unique_id\",\"definition\":\"UNIQUE KEY `unique_id` (`serverId`,`cityId`,`month`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerRegionCountryDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerRegionCountryDailyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `countryId` int(11) unsigned DEFAULT '0' COMMENT '国家/区域ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数量',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击数量',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '总流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `unique_id` (`serverId`,`countryId`,`day`) USING BTREE,\\n KEY `day` (`day`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务用户区域分布统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"countryId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '国家/区域ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数量'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击数量'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '总流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"unique_id\",\"definition\":\"UNIQUE KEY `unique_id` (`serverId`,`countryId`,`day`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerRegionCountryMonthlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerRegionCountryMonthlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `countryId` int(11) unsigned DEFAULT '0' COMMENT '国家/区域ID',\\n `month` varchar(6) DEFAULT NULL COMMENT '月份YYYYMM',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `unique_id` (`serverId`,`countryId`,`month`) USING BTREE,\\n KEY `month` (`month`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务用户区域分布统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"countryId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '国家/区域ID'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT '月份YYYYMM'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"unique_id\",\"definition\":\"UNIQUE KEY `unique_id` (`serverId`,`countryId`,`month`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerRegionProviderMonthlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerRegionProviderMonthlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `providerId` int(11) unsigned DEFAULT '0' COMMENT '运营商ID',\\n `month` varchar(6) DEFAULT NULL COMMENT '月份YYYYMM',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `unique_id` (`serverId`,`providerId`,`month`) USING BTREE,\\n KEY `month` (`month`) USING BTREE,\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务用户省份分布统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"providerId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '运营商ID'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT '月份YYYYMM'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"unique_id\",\"definition\":\"UNIQUE KEY `unique_id` (`serverId`,`providerId`,`month`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerRegionProvinceMonthlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerRegionProvinceMonthlyStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `serverId` int(11) unsigned DEFAULT '0' COMMENT '服务ID',\\n `provinceId` int(11) unsigned DEFAULT '0' COMMENT '省份ID',\\n `month` varchar(6) DEFAULT NULL COMMENT '月份YYYYMM',\\n `count` bigint(20) unsigned DEFAULT '0' COMMENT '数量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `unique_id` (`serverId`,`provinceId`,`month`) USING BTREE,\\n KEY `month` (`month`),\\n KEY `serverId` (`serverId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务用户省份分布统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"serverId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '服务ID'\"},{\"name\":\"provinceId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '省份ID'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT '月份YYYYMM'\"},{\"name\":\"count\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '数量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"unique_id\",\"definition\":\"UNIQUE KEY `unique_id` (`serverId`,`provinceId`,`month`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"},{\"name\":\"serverId\",\"definition\":\"KEY `serverId` (`serverId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerStatBoardCharts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerStatBoardCharts` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `boardId` bigint(11) unsigned DEFAULT '0' COMMENT '看板ID',\\n `code` varchar(255) DEFAULT NULL COMMENT '内置图表代码',\\n `itemId` int(11) unsigned DEFAULT '0' COMMENT '指标ID',\\n `chartId` int(11) unsigned DEFAULT '0' COMMENT '图表ID',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `boardId` (`boardId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务看板中的图表'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"boardId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '看板ID'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '内置图表代码'\"},{\"name\":\"itemId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '指标ID'\"},{\"name\":\"chartId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '图表ID'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"boardId\",\"definition\":\"KEY `boardId` (`boardId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServerStatBoards\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServerStatBoards` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `clusterId` (`clusterId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务统计看板'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeServers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeServers` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `type` varchar(64) DEFAULT NULL COMMENT '服务类型',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(512) DEFAULT NULL COMMENT '描述',\\n `plainServerNames` json DEFAULT NULL COMMENT '扁平化域名列表',\\n `serverNames` json DEFAULT NULL COMMENT '域名列表',\\n `auditingAt` bigint(11) unsigned DEFAULT '0' COMMENT '审核提交时间',\\n `auditingServerNames` json DEFAULT NULL COMMENT '审核中的域名',\\n `isAuditing` tinyint(1) unsigned DEFAULT '0' COMMENT '是否正在审核',\\n `auditingResult` json DEFAULT NULL COMMENT '审核结果',\\n `http` json DEFAULT NULL COMMENT 'HTTP配置',\\n `https` json DEFAULT NULL COMMENT 'HTTPS配置',\\n `tcp` json DEFAULT NULL COMMENT 'TCP配置',\\n `tls` json DEFAULT NULL COMMENT 'TLS配置',\\n `unix` json DEFAULT NULL COMMENT 'Unix配置',\\n `udp` json DEFAULT NULL COMMENT 'UDP配置',\\n `webId` int(11) unsigned DEFAULT '0' COMMENT 'WEB配置',\\n `reverseProxy` json DEFAULT NULL COMMENT '反向代理配置',\\n `groupIds` json DEFAULT NULL COMMENT '分组ID列表',\\n `config` json DEFAULT NULL COMMENT '服务配置,自动生成',\\n `configMd5` varchar(32) DEFAULT NULL COMMENT 'Md5',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `includeNodes` json DEFAULT NULL COMMENT '部署条件',\\n `excludeNodes` json DEFAULT NULL COMMENT '节点排除条件',\\n `version` int(11) unsigned DEFAULT '0' COMMENT '版本号',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `dnsName` varchar(255) DEFAULT NULL COMMENT 'DNS名称',\\n `tcpPorts` json DEFAULT NULL COMMENT '所包含TCP端口',\\n `udpPorts` json DEFAULT NULL COMMENT '所包含UDP端口',\\n `supportCNAME` tinyint(1) unsigned DEFAULT '0' COMMENT '允许CNAME不在域名名单',\\n `trafficLimit` json DEFAULT NULL COMMENT '流量限制',\\n `trafficDay` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `trafficMonth` varchar(6) DEFAULT NULL COMMENT 'YYYYMM',\\n `totalDailyTraffic` decimal(20,6) unsigned DEFAULT '0.000000' COMMENT '日流量',\\n `totalMonthlyTraffic` decimal(20,6) unsigned DEFAULT '0.000000' COMMENT '月流量',\\n `trafficLimitStatus` json DEFAULT NULL COMMENT '流量限制状态',\\n `totalTraffic` decimal(20,6) unsigned DEFAULT '0.000000' COMMENT '总流量',\\n `userPlanId` int(11) unsigned DEFAULT '0' COMMENT '所属套餐ID',\\n `lastUserPlanId` int(11) unsigned DEFAULT '0' COMMENT '上一次使用的套餐',\\n `uam` json DEFAULT NULL COMMENT 'UAM设置',\\n `bandwidthTime` varchar(12) DEFAULT NULL COMMENT '带宽更新时间YYYYMMDDHHII',\\n `bandwidthBytes` bigint(20) unsigned DEFAULT '0' COMMENT '最近带宽峰值',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `adminId` (`adminId`),\\n KEY `isUpdating_state` (`state`) USING BTREE,\\n KEY `dnsName` (`dnsName`),\\n KEY `clusterId` (`clusterId`),\\n KEY `isAuditing` (`isAuditing`),\\n KEY `webId` (`webId`),\\n KEY `state` (`state`),\\n KEY `userPlanId` (`userPlanId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='服务'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '服务类型'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '描述'\"},{\"name\":\"plainServerNames\",\"definition\":\"json COMMENT '扁平化域名列表'\"},{\"name\":\"serverNames\",\"definition\":\"json COMMENT '域名列表'\"},{\"name\":\"auditingAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '审核提交时间'\"},{\"name\":\"auditingServerNames\",\"definition\":\"json COMMENT '审核中的域名'\"},{\"name\":\"isAuditing\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否正在审核'\"},{\"name\":\"auditingResult\",\"definition\":\"json COMMENT '审核结果'\"},{\"name\":\"http\",\"definition\":\"json COMMENT 'HTTP配置'\"},{\"name\":\"https\",\"definition\":\"json COMMENT 'HTTPS配置'\"},{\"name\":\"tcp\",\"definition\":\"json COMMENT 'TCP配置'\"},{\"name\":\"tls\",\"definition\":\"json COMMENT 'TLS配置'\"},{\"name\":\"unix\",\"definition\":\"json COMMENT 'Unix配置'\"},{\"name\":\"udp\",\"definition\":\"json COMMENT 'UDP配置'\"},{\"name\":\"webId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT 'WEB配置'\"},{\"name\":\"reverseProxy\",\"definition\":\"json COMMENT '反向代理配置'\"},{\"name\":\"groupIds\",\"definition\":\"json COMMENT '分组ID列表'\"},{\"name\":\"config\",\"definition\":\"json COMMENT '服务配置,自动生成'\"},{\"name\":\"configMd5\",\"definition\":\"varchar(32) COMMENT 'Md5'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"includeNodes\",\"definition\":\"json COMMENT '部署条件'\"},{\"name\":\"excludeNodes\",\"definition\":\"json COMMENT '节点排除条件'\"},{\"name\":\"version\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"dnsName\",\"definition\":\"varchar(255) COMMENT 'DNS名称'\"},{\"name\":\"tcpPorts\",\"definition\":\"json COMMENT '所包含TCP端口'\"},{\"name\":\"udpPorts\",\"definition\":\"json COMMENT '所包含UDP端口'\"},{\"name\":\"supportCNAME\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '允许CNAME不在域名名单'\"},{\"name\":\"trafficLimit\",\"definition\":\"json COMMENT '流量限制'\"},{\"name\":\"trafficDay\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"trafficMonth\",\"definition\":\"varchar(6) COMMENT 'YYYYMM'\"},{\"name\":\"totalDailyTraffic\",\"definition\":\"decimal(20,6) unsigned DEFAULT '0.000000' COMMENT '日流量'\"},{\"name\":\"totalMonthlyTraffic\",\"definition\":\"decimal(20,6) unsigned DEFAULT '0.000000' COMMENT '月流量'\"},{\"name\":\"trafficLimitStatus\",\"definition\":\"json COMMENT '流量限制状态'\"},{\"name\":\"totalTraffic\",\"definition\":\"decimal(20,6) unsigned DEFAULT '0.000000' COMMENT '总流量'\"},{\"name\":\"userPlanId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '所属套餐ID'\"},{\"name\":\"lastUserPlanId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '上一次使用的套餐'\"},{\"name\":\"uam\",\"definition\":\"json COMMENT 'UAM设置'\"},{\"name\":\"bandwidthTime\",\"definition\":\"varchar(12) COMMENT '带宽更新时间YYYYMMDDHHII'\"},{\"name\":\"bandwidthBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '最近带宽峰值'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"adminId\",\"definition\":\"KEY `adminId` (`adminId`) USING BTREE\"},{\"name\":\"isUpdating_state\",\"definition\":\"KEY `isUpdating_state` (`state`) USING BTREE\"},{\"name\":\"dnsName\",\"definition\":\"KEY `dnsName` (`dnsName`) USING BTREE\"},{\"name\":\"clusterId\",\"definition\":\"KEY `clusterId` (`clusterId`) USING BTREE\"},{\"name\":\"isAuditing\",\"definition\":\"KEY `isAuditing` (`isAuditing`) USING BTREE\"},{\"name\":\"webId\",\"definition\":\"KEY `webId` (`webId`) USING BTREE\"},{\"name\":\"state\",\"definition\":\"KEY `state` (`state`) USING BTREE\"},{\"name\":\"userPlanId\",\"definition\":\"KEY `userPlanId` (`userPlanId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSubUsers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSubUsers` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '所属主用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `username` varchar(255) DEFAULT NULL COMMENT '用户名',\\n `password` varchar(32) DEFAULT NULL COMMENT '密码',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='子用户'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '所属主用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"username\",\"definition\":\"varchar(255) COMMENT '用户名'\"},{\"name\":\"password\",\"definition\":\"varchar(32) COMMENT '密码'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSysEvents\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSysEvents` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '类型',\\n `params` json DEFAULT NULL COMMENT '参数',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='系统事件'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '类型'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSysLockers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSysLockers` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `key` varchar(255) DEFAULT NULL COMMENT '键值',\\n `version` bigint(20) unsigned DEFAULT '0' COMMENT '版本号',\\n `timeoutAt` bigint(11) unsigned DEFAULT '0' COMMENT '超时时间',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `key` (`key`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='并发锁'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"key\",\"definition\":\"varchar(255) COMMENT '键值'\"},{\"name\":\"version\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '版本号'\"},{\"name\":\"timeoutAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '超时时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"key\",\"definition\":\"UNIQUE KEY `key` (`key`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeSysSettings\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeSysSettings` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `code` varchar(255) DEFAULT NULL COMMENT '代号',\\n `value` json DEFAULT NULL COMMENT '配置值',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `code` (`code`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='系统配置'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"code\",\"definition\":\"varchar(255) COMMENT '代号'\"},{\"name\":\"value\",\"definition\":\"json COMMENT '配置值'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"UNIQUE KEY `code` (`code`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeTCPFirewallPolicies\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeTCPFirewallPolicies` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) DEFAULT NULL COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `templateId` int(11) unsigned DEFAULT '0' COMMENT '模版ID',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='TCP防火墙'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"templateId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '模版ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeTrafficDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeTrafficDailyStats` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `bytes` bigint(20) unsigned DEFAULT NULL COMMENT '流量字节',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求数',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击量',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `day` (`day`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='总的流量统计(按天)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned COMMENT '流量字节'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求数'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击量'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"UNIQUE KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeTrafficHourlyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeTrafficHourlyStats` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `hour` varchar(10) DEFAULT NULL COMMENT 'YYYYMMDDHH',\\n `bytes` bigint(20) unsigned DEFAULT NULL COMMENT '流量字节',\\n `cachedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量',\\n `countRequests` bigint(20) unsigned DEFAULT '0' COMMENT '请求数',\\n `countCachedRequests` bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求数',\\n `countAttackRequests` bigint(20) unsigned DEFAULT '0' COMMENT '攻击数',\\n `attackBytes` bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `hour` (`hour`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='总的流量统计(按小时)'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"hour\",\"definition\":\"varchar(10) COMMENT 'YYYYMMDDHH'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned COMMENT '流量字节'\"},{\"name\":\"cachedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存流量'\"},{\"name\":\"countRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '请求数'\"},{\"name\":\"countCachedRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '缓存请求数'\"},{\"name\":\"countAttackRequests\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击数'\"},{\"name\":\"attackBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '攻击流量'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"hour\",\"definition\":\"UNIQUE KEY `hour` (`hour`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeTrafficPackagePeriods\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeTrafficPackagePeriods` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `count` int(11) unsigned DEFAULT '0' COMMENT '数量',\\n `unit` varchar(8) DEFAULT NULL COMMENT '单位month, year',\\n `months` int(11) unsigned DEFAULT '0' COMMENT '月数',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='流量包有效期'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"count\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '数量'\"},{\"name\":\"unit\",\"definition\":\"varchar(8) COMMENT '单位month, year'\"},{\"name\":\"months\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '月数'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeTrafficPackagePrices\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeTrafficPackagePrices` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `packageId` int(11) unsigned DEFAULT '0' COMMENT '套餐ID',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `periodId` int(11) unsigned DEFAULT '0' COMMENT '有效期ID',\\n `price` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '价格',\\n `discountPrice` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '折后价格',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `package_region_period` (`packageId`,`regionId`,`periodId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='流量包价格'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"packageId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '套餐ID'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"periodId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '有效期ID'\"},{\"name\":\"price\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '价格'\"},{\"name\":\"discountPrice\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '折后价格'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"package_region_period\",\"definition\":\"UNIQUE KEY `package_region_period` (`packageId`,`regionId`,`periodId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeTrafficPackages\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeTrafficPackages` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `size` int(11) unsigned DEFAULT '0' COMMENT '尺寸',\\n `unit` varchar(8) DEFAULT NULL COMMENT '单位gb|tb等',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '字节',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='流量包'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"size\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '尺寸'\"},{\"name\":\"unit\",\"definition\":\"varchar(8) COMMENT '单位gb|tb等'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '字节'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserAccessKeys\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserAccessKeys` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `subUserId` int(11) unsigned DEFAULT '0' COMMENT '子用户ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一的Key',\\n `secret` varchar(64) DEFAULT NULL COMMENT '密钥',\\n `description` varchar(255) DEFAULT NULL COMMENT '备注',\\n `accessedAt` bigint(11) unsigned DEFAULT '0' COMMENT '最近一次访问时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `subUserId` (`subUserId`),\\n KEY `uniqueId` (`uniqueId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='AccessKey'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"subUserId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '子用户ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一的Key'\"},{\"name\":\"secret\",\"definition\":\"varchar(64) COMMENT '密钥'\"},{\"name\":\"description\",\"definition\":\"varchar(255) COMMENT '备注'\"},{\"name\":\"accessedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '最近一次访问时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"subUserId\",\"definition\":\"KEY `subUserId` (`subUserId`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"KEY `uniqueId` (`uniqueId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserAccountDailyStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserAccountDailyStats` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `month` varchar(6) DEFAULT NULL COMMENT 'YYYYMM',\\n `income` decimal(12,2) unsigned DEFAULT '0.00' COMMENT '收入',\\n `expense` decimal(12,2) unsigned DEFAULT '0.00' COMMENT '支出',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `day` (`day`) USING BTREE,\\n KEY `month` (`month`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='账户每日统计'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT 'YYYYMM'\"},{\"name\":\"income\",\"definition\":\"decimal(12,2) unsigned DEFAULT '0.00' COMMENT '收入'\"},{\"name\":\"expense\",\"definition\":\"decimal(12,2) unsigned DEFAULT '0.00' COMMENT '支出'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"UNIQUE KEY `day` (`day`) USING BTREE\"},{\"name\":\"month\",\"definition\":\"KEY `month` (`month`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserAccountLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserAccountLogs` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `accountId` bigint(11) unsigned DEFAULT '0' COMMENT '账户ID',\\n `delta` decimal(11,2) DEFAULT '0.00' COMMENT '操作余额的数量(可为负)',\\n `deltaFrozen` decimal(11,2) DEFAULT '0.00' COMMENT '操作冻结的数量(可为负)',\\n `total` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '操作后余额',\\n `totalFrozen` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '操作后冻结余额',\\n `eventType` varchar(128) DEFAULT NULL COMMENT '类型',\\n `description` varchar(512) DEFAULT NULL COMMENT '描述文字',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '时间',\\n `params` json DEFAULT NULL COMMENT '参数',\\n PRIMARY KEY (`id`),\\n KEY `accountId` (`accountId`),\\n KEY `type` (`eventType`),\\n KEY `day` (`day`),\\n KEY `userId` (`userId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户账户日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"accountId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '账户ID'\"},{\"name\":\"delta\",\"definition\":\"decimal(11,2) DEFAULT '0.00' COMMENT '操作余额的数量(可为负)'\"},{\"name\":\"deltaFrozen\",\"definition\":\"decimal(11,2) DEFAULT '0.00' COMMENT '操作冻结的数量(可为负)'\"},{\"name\":\"total\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '操作后余额'\"},{\"name\":\"totalFrozen\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '操作后冻结余额'\"},{\"name\":\"eventType\",\"definition\":\"varchar(128) COMMENT '类型'\"},{\"name\":\"description\",\"definition\":\"varchar(512) COMMENT '描述文字'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '时间'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '参数'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"accountId\",\"definition\":\"KEY `accountId` (`accountId`) USING BTREE\"},{\"name\":\"type\",\"definition\":\"KEY `type` (`eventType`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserAccounts\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserAccounts` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `total` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '可用总余额',\\n `totalFrozen` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '冻结余额',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `userId` (`userId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户账号'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"total\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '可用总余额'\"},{\"name\":\"totalFrozen\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '冻结余额'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"UNIQUE KEY `userId` (`userId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_0\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_0` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_1\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_1` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_10\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_10` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_11\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_11` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_12\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_12` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_13\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_13` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_14\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_14` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_15\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_15` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_16\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_16` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_17\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_17` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_18\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_18` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_19\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_19` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_2\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_2` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_3\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_3` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_4\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_4` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_5\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_5` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_6\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_6` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_7\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_7` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_8\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_8` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBandwidthStats_9\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBandwidthStats_9` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `day` varchar(8) DEFAULT NULL COMMENT '日期YYYYMMDD',\\n `timeAt` varchar(4) DEFAULT NULL COMMENT '时间点HHII',\\n `bytes` bigint(20) unsigned DEFAULT '0' COMMENT '带宽',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户月带宽峰值'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT '日期YYYYMMDD'\"},{\"name\":\"timeAt\",\"definition\":\"varchar(4) COMMENT '时间点HHII'\"},{\"name\":\"bytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '带宽'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"user_day_time_region\",\"definition\":\"UNIQUE KEY `user_day_time_region` (`userId`,`day`,`timeAt`,`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserBills\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserBills` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `type` varchar(255) DEFAULT NULL COMMENT '消费类型',\\n `pricePeriod` varchar(32) DEFAULT 'monthly' COMMENT '计费周期',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `amount` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '消费数额',\\n `dayFrom` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `dayTo` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `month` varchar(6) DEFAULT NULL COMMENT '帐期YYYYMM',\\n `canPay` tinyint(1) unsigned DEFAULT '1' COMMENT '是否可以支付',\\n `isPaid` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已支付',\\n `paidAt` bigint(11) unsigned DEFAULT '0' COMMENT '支付时间',\\n `code` varchar(64) DEFAULT NULL COMMENT '账单编号',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `createdDay` varchar(8) DEFAULT NULL COMMENT '创建日期',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `code` (`code`),\\n UNIQUE KEY `user_month_day_type_state` (`userId`,`month`,`type`,`dayFrom`,`dayTo`,`state`) USING BTREE,\\n KEY `userId` (`userId`),\\n KEY `isPaid` (`isPaid`),\\n KEY `createdDay` (`createdDay`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户账单'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"type\",\"definition\":\"varchar(255) COMMENT '消费类型'\"},{\"name\":\"pricePeriod\",\"definition\":\"varchar(32) DEFAULT 'monthly' COMMENT '计费周期'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"amount\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '消费数额'\"},{\"name\":\"dayFrom\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"dayTo\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"month\",\"definition\":\"varchar(6) COMMENT '帐期YYYYMM'\"},{\"name\":\"canPay\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否可以支付'\"},{\"name\":\"isPaid\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已支付'\"},{\"name\":\"paidAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '支付时间'\"},{\"name\":\"code\",\"definition\":\"varchar(64) COMMENT '账单编号'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"createdDay\",\"definition\":\"varchar(8) COMMENT '创建日期'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"UNIQUE KEY `code` (`code`) USING BTREE\"},{\"name\":\"user_month_day_type_state\",\"definition\":\"UNIQUE KEY `user_month_day_type_state` (`userId`,`month`,`type`,`dayFrom`,`dayTo`,`state`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"isPaid\",\"definition\":\"KEY `isPaid` (`isPaid`) USING BTREE\"},{\"name\":\"createdDay\",\"definition\":\"KEY `createdDay` (`createdDay`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserIdentities\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserIdentities` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `orgType` varchar(64) DEFAULT NULL COMMENT '组织类型',\\n `type` varchar(64) DEFAULT NULL COMMENT '证件类型',\\n `realName` varchar(128) DEFAULT NULL COMMENT '真实姓名',\\n `number` varchar(128) DEFAULT NULL COMMENT '编号',\\n `fileIds` json DEFAULT NULL COMMENT '文件ID',\\n `status` varchar(32) DEFAULT NULL COMMENT '状态none,submitted,verified,rejected',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `submittedAt` bigint(11) unsigned DEFAULT '0' COMMENT '提交时间',\\n `rejectedAt` bigint(11) unsigned DEFAULT '0' COMMENT '拒绝时间',\\n `verifiedAt` bigint(11) unsigned DEFAULT '0' COMMENT '认证时间',\\n `rejectReason` varchar(255) DEFAULT NULL COMMENT '拒绝原因',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `status` (`status`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户实名认证信息'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"orgType\",\"definition\":\"varchar(64) COMMENT '组织类型'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '证件类型'\"},{\"name\":\"realName\",\"definition\":\"varchar(128) COMMENT '真实姓名'\"},{\"name\":\"number\",\"definition\":\"varchar(128) COMMENT '编号'\"},{\"name\":\"fileIds\",\"definition\":\"json COMMENT '文件ID'\"},{\"name\":\"status\",\"definition\":\"varchar(32) COMMENT '状态none,submitted,verified,rejected'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"submittedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '提交时间'\"},{\"name\":\"rejectedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '拒绝时间'\"},{\"name\":\"verifiedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '认证时间'\"},{\"name\":\"rejectReason\",\"definition\":\"varchar(255) COMMENT '拒绝原因'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"status\",\"definition\":\"KEY `status` (`status`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserNodes\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserNodes` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `uniqueId` varchar(32) DEFAULT NULL COMMENT '唯一ID',\\n `secret` varchar(32) DEFAULT NULL COMMENT '密钥',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `description` varchar(1024) DEFAULT NULL COMMENT '描述',\\n `http` json DEFAULT NULL COMMENT '监听的HTTP配置',\\n `https` json DEFAULT NULL COMMENT '监听的HTTPS配置',\\n `accessAddrs` json DEFAULT NULL COMMENT '外部访问地址',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `weight` int(11) unsigned DEFAULT '0' COMMENT '权重',\\n `status` json DEFAULT NULL COMMENT '运行状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户节点'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"uniqueId\",\"definition\":\"varchar(32) COMMENT '唯一ID'\"},{\"name\":\"secret\",\"definition\":\"varchar(32) COMMENT '密钥'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"description\",\"definition\":\"varchar(1024) COMMENT '描述'\"},{\"name\":\"http\",\"definition\":\"json COMMENT '监听的HTTP配置'\"},{\"name\":\"https\",\"definition\":\"json COMMENT '监听的HTTPS配置'\"},{\"name\":\"accessAddrs\",\"definition\":\"json COMMENT '外部访问地址'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"weight\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '权重'\"},{\"name\":\"status\",\"definition\":\"json COMMENT '运行状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`uniqueId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserOrderLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserOrderLogs` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` bigint(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `orderId` bigint(20) unsigned DEFAULT '0' COMMENT '订单ID',\\n `status` varchar(64) DEFAULT NULL COMMENT '状态',\\n `snapshot` json DEFAULT NULL COMMENT '状态快照',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n PRIMARY KEY (`id`),\\n KEY `orderId` (`orderId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"orderId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '订单ID'\"},{\"name\":\"status\",\"definition\":\"varchar(64) COMMENT '状态'\"},{\"name\":\"snapshot\",\"definition\":\"json COMMENT '状态快照'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"orderId\",\"definition\":\"KEY `orderId` (`orderId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserOrders\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserOrders` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户订单',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `code` varchar(64) DEFAULT NULL COMMENT '订单号',\\n `type` varchar(64) DEFAULT NULL COMMENT '订单类型',\\n `methodId` int(1) unsigned DEFAULT '0' COMMENT '支付方式',\\n `status` varchar(64) DEFAULT NULL COMMENT '订单状态',\\n `amount` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '金额',\\n `params` json DEFAULT NULL COMMENT '附加参数',\\n `expiredAt` bigint(11) unsigned DEFAULT '0' COMMENT '过期时间',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `cancelledAt` bigint(11) unsigned DEFAULT '0' COMMENT '取消时间',\\n `finishedAt` bigint(11) unsigned DEFAULT '0' COMMENT '结束时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `code` (`code`) USING BTREE,\\n KEY `userId` (`userId`),\\n KEY `status` (`status`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户订单'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT '用户订单'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"code\",\"definition\":\"varchar(64) COMMENT '订单号'\"},{\"name\":\"type\",\"definition\":\"varchar(64) COMMENT '订单类型'\"},{\"name\":\"methodId\",\"definition\":\"int(1) unsigned DEFAULT '0' COMMENT '支付方式'\"},{\"name\":\"status\",\"definition\":\"varchar(64) COMMENT '订单状态'\"},{\"name\":\"amount\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '金额'\"},{\"name\":\"params\",\"definition\":\"json COMMENT '附加参数'\"},{\"name\":\"expiredAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '过期时间'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"cancelledAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '取消时间'\"},{\"name\":\"finishedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '结束时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"code\",\"definition\":\"UNIQUE KEY `code` (`code`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"status\",\"definition\":\"KEY `status` (`status`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserPlans\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserPlans` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `userId` int(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `planId` int(11) unsigned DEFAULT '0' COMMENT '套餐ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `name` varchar(255) DEFAULT NULL COMMENT '名称',\\n `dayTo` date DEFAULT NULL COMMENT '结束日期',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `planId` (`planId`),\\n KEY `userId` (`userId`),\\n KEY `dayTo` (`dayTo`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户的套餐'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"userId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"planId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '套餐ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '名称'\"},{\"name\":\"dayTo\",\"definition\":\"date COMMENT '结束日期'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"planId\",\"definition\":\"KEY `planId` (`planId`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"dayTo\",\"definition\":\"KEY `dayTo` (`dayTo`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserTicketCategories\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserTicketCategories` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `name` varchar(255) DEFAULT NULL COMMENT '分类名',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `order` int(11) unsigned DEFAULT '0' COMMENT '排序',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='工单分类'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"name\",\"definition\":\"varchar(255) COMMENT '分类名'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"order\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '排序'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserTicketLogs\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserTicketLogs` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` bigint(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `ticketId` bigint(11) unsigned DEFAULT '0' COMMENT '工单ID',\\n `status` varchar(64) DEFAULT NULL COMMENT '状态',\\n `comment` text COMMENT '回复内容',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `isReadonly` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为只读',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `ticketId` (`ticketId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='工单日志'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"ticketId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '工单ID'\"},{\"name\":\"status\",\"definition\":\"varchar(64) COMMENT '状态'\"},{\"name\":\"comment\",\"definition\":\"text COMMENT '回复内容'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"isReadonly\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否为只读'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"ticketId\",\"definition\":\"KEY `ticketId` (`ticketId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserTickets\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserTickets` (\\n `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `categoryId` bigint(11) unsigned DEFAULT '0' COMMENT '分类ID',\\n `toAdminId` bigint(11) unsigned DEFAULT '0' COMMENT '指派的管理员ID',\\n `userId` bigint(11) unsigned DEFAULT '0' COMMENT '用户ID',\\n `subject` varchar(255) DEFAULT NULL COMMENT '标题',\\n `body` text COMMENT '内容',\\n `status` varchar(64) DEFAULT NULL COMMENT '状态',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `lastLogAt` bigint(11) unsigned DEFAULT '0' COMMENT '最后日志时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `status` (`status`),\\n KEY `toAdminId` (`toAdminId`),\\n KEY `categoryId` (`categoryId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='工单'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"categoryId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '分类ID'\"},{\"name\":\"toAdminId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '指派的管理员ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"subject\",\"definition\":\"varchar(255) COMMENT '标题'\"},{\"name\":\"body\",\"definition\":\"text COMMENT '内容'\"},{\"name\":\"status\",\"definition\":\"varchar(64) COMMENT '状态'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"lastLogAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '最后日志时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"status\",\"definition\":\"KEY `status` (`status`) USING BTREE\"},{\"name\":\"toAdminId\",\"definition\":\"KEY `toAdminId` (`toAdminId`) USING BTREE\"},{\"name\":\"categoryId\",\"definition\":\"KEY `categoryId` (`categoryId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserTrafficBills\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserTrafficBills` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `billId` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '主账单ID',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `amount` decimal(11,2) unsigned DEFAULT '0.00' COMMENT '金额',\\n `bandwidthMB` decimal(20,4) unsigned DEFAULT '0.0000' COMMENT '带宽MB',\\n `bandwidthPercentile` tinyint(3) unsigned DEFAULT '0' COMMENT '带宽百分位',\\n `trafficGB` decimal(20,4) unsigned DEFAULT '0.0000' COMMENT '流量GB',\\n `trafficPackageGB` decimal(20,4) unsigned DEFAULT '0.0000' COMMENT '使用的流量包GB',\\n `userTrafficPackageIds` json DEFAULT NULL COMMENT '使用的流量包ID',\\n `pricePerUnit` decimal(11,4) unsigned DEFAULT '0.0000' COMMENT '单位价格',\\n `priceType` varchar(32) DEFAULT NULL COMMENT '计费方式traffic|bandwidth',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`) USING BTREE,\\n UNIQUE KEY `uniqueId` (`billId`,`regionId`) USING BTREE,\\n KEY `billId` (`billId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户流量/带宽账单'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"billId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '主账单ID'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"amount\",\"definition\":\"decimal(11,2) unsigned DEFAULT '0.00' COMMENT '金额'\"},{\"name\":\"bandwidthMB\",\"definition\":\"decimal(20,4) unsigned DEFAULT '0.0000' COMMENT '带宽MB'\"},{\"name\":\"bandwidthPercentile\",\"definition\":\"tinyint(3) unsigned DEFAULT '0' COMMENT '带宽百分位'\"},{\"name\":\"trafficGB\",\"definition\":\"decimal(20,4) unsigned DEFAULT '0.0000' COMMENT '流量GB'\"},{\"name\":\"trafficPackageGB\",\"definition\":\"decimal(20,4) unsigned DEFAULT '0.0000' COMMENT '使用的流量包GB'\"},{\"name\":\"userTrafficPackageIds\",\"definition\":\"json COMMENT '使用的流量包ID'\"},{\"name\":\"pricePerUnit\",\"definition\":\"decimal(11,4) unsigned DEFAULT '0.0000' COMMENT '单位价格'\"},{\"name\":\"priceType\",\"definition\":\"varchar(32) COMMENT '计费方式traffic|bandwidth'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"uniqueId\",\"definition\":\"UNIQUE KEY `uniqueId` (`billId`,`regionId`) USING BTREE\"},{\"name\":\"billId\",\"definition\":\"KEY `billId` (`billId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUserTrafficPackages\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUserTrafficPackages` (\\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `adminId` int(11) unsigned DEFAULT '0' COMMENT '管理员ID',\\n `userId` bigint(20) unsigned DEFAULT '0' COMMENT '用户ID',\\n `packageId` int(11) unsigned DEFAULT '0' COMMENT '流量包ID',\\n `totalBytes` bigint(20) unsigned DEFAULT '0' COMMENT '总字节数',\\n `usedBytes` bigint(20) unsigned DEFAULT '0' COMMENT '已使用字节数',\\n `regionId` int(11) unsigned DEFAULT '0' COMMENT '区域ID',\\n `periodId` int(11) unsigned DEFAULT '0' COMMENT '有效期ID',\\n `periodCount` int(11) unsigned DEFAULT '0' COMMENT '有效期数量',\\n `periodUnit` varchar(8) DEFAULT NULL COMMENT '有效期单位',\\n `dayFrom` varchar(8) DEFAULT NULL COMMENT '开始日期',\\n `dayTo` varchar(8) DEFAULT NULL COMMENT '结束日期',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n PRIMARY KEY (`id`),\\n KEY `userId` (`userId`),\\n KEY `packageId` (`packageId`),\\n KEY `regionId` (`regionId`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户购买的流量包'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(20) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"adminId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '管理员ID'\"},{\"name\":\"userId\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '用户ID'\"},{\"name\":\"packageId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '流量包ID'\"},{\"name\":\"totalBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '总字节数'\"},{\"name\":\"usedBytes\",\"definition\":\"bigint(20) unsigned DEFAULT '0' COMMENT '已使用字节数'\"},{\"name\":\"regionId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '区域ID'\"},{\"name\":\"periodId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '有效期ID'\"},{\"name\":\"periodCount\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '有效期数量'\"},{\"name\":\"periodUnit\",\"definition\":\"varchar(8) COMMENT '有效期单位'\"},{\"name\":\"dayFrom\",\"definition\":\"varchar(8) COMMENT '开始日期'\"},{\"name\":\"dayTo\",\"definition\":\"varchar(8) COMMENT '结束日期'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"userId\",\"definition\":\"KEY `userId` (`userId`) USING BTREE\"},{\"name\":\"packageId\",\"definition\":\"KEY `packageId` (`packageId`) USING BTREE\"},{\"name\":\"regionId\",\"definition\":\"KEY `regionId` (`regionId`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeUsers\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeUsers` (\\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `isOn` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用',\\n `username` varchar(64) DEFAULT NULL COMMENT '用户名',\\n `password` varchar(32) DEFAULT NULL COMMENT '密码',\\n `fullname` varchar(64) DEFAULT NULL COMMENT '真实姓名',\\n `mobile` varchar(11) DEFAULT NULL COMMENT '手机号',\\n `tel` varchar(255) DEFAULT NULL COMMENT '联系电话',\\n `remark` varchar(1024) DEFAULT NULL COMMENT '备注',\\n `email` varchar(255) DEFAULT NULL COMMENT '邮箱地址',\\n `emailIsVerified` tinyint(1) unsigned DEFAULT '0' COMMENT '邮箱是否已验证',\\n `avatarFileId` bigint(11) unsigned DEFAULT '0' COMMENT '头像文件ID',\\n `createdAt` bigint(11) unsigned DEFAULT '0' COMMENT '创建时间',\\n `day` varchar(8) DEFAULT NULL COMMENT 'YYYYMMDD',\\n `updatedAt` bigint(11) unsigned DEFAULT '0' COMMENT '修改时间',\\n `state` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',\\n `source` varchar(255) DEFAULT NULL COMMENT '来源',\\n `clusterId` int(11) unsigned DEFAULT '0' COMMENT '集群ID',\\n `features` json DEFAULT NULL COMMENT '允许操作的特征',\\n `registeredIP` varchar(64) DEFAULT NULL COMMENT '注册使用的IP',\\n `isRejected` tinyint(1) unsigned DEFAULT '0' COMMENT '是否已拒绝',\\n `rejectReason` varchar(255) DEFAULT NULL COMMENT '拒绝理由',\\n `isVerified` tinyint(1) unsigned DEFAULT '1' COMMENT '是否验证通过',\\n `requirePlans` tinyint(1) unsigned DEFAULT '0' COMMENT '是否需要购买套餐',\\n `modules` json DEFAULT NULL COMMENT '用户模块',\\n `priceType` varchar(32) DEFAULT NULL COMMENT '计费类型traffic|bandwidth',\\n `pricePeriod` varchar(32) DEFAULT NULL COMMENT '结算周期',\\n PRIMARY KEY (`id`),\\n UNIQUE KEY `username_state` (`username`,`state`),\\n KEY `username` (`username`),\\n KEY `day` (`day`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户'\",\"fields\":[{\"name\":\"id\",\"definition\":\"int(11) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"isOn\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否启用'\"},{\"name\":\"username\",\"definition\":\"varchar(64) COMMENT '用户名'\"},{\"name\":\"password\",\"definition\":\"varchar(32) COMMENT '密码'\"},{\"name\":\"fullname\",\"definition\":\"varchar(64) COMMENT '真实姓名'\"},{\"name\":\"mobile\",\"definition\":\"varchar(11) COMMENT '手机号'\"},{\"name\":\"tel\",\"definition\":\"varchar(255) COMMENT '联系电话'\"},{\"name\":\"remark\",\"definition\":\"varchar(1024) COMMENT '备注'\"},{\"name\":\"email\",\"definition\":\"varchar(255) COMMENT '邮箱地址'\"},{\"name\":\"emailIsVerified\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '邮箱是否已验证'\"},{\"name\":\"avatarFileId\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '头像文件ID'\"},{\"name\":\"createdAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '创建时间'\"},{\"name\":\"day\",\"definition\":\"varchar(8) COMMENT 'YYYYMMDD'\"},{\"name\":\"updatedAt\",\"definition\":\"bigint(11) unsigned DEFAULT '0' COMMENT '修改时间'\"},{\"name\":\"state\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '状态'\"},{\"name\":\"source\",\"definition\":\"varchar(255) COMMENT '来源'\"},{\"name\":\"clusterId\",\"definition\":\"int(11) unsigned DEFAULT '0' COMMENT '集群ID'\"},{\"name\":\"features\",\"definition\":\"json COMMENT '允许操作的特征'\"},{\"name\":\"registeredIP\",\"definition\":\"varchar(64) COMMENT '注册使用的IP'\"},{\"name\":\"isRejected\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否已拒绝'\"},{\"name\":\"rejectReason\",\"definition\":\"varchar(255) COMMENT '拒绝理由'\"},{\"name\":\"isVerified\",\"definition\":\"tinyint(1) unsigned DEFAULT '1' COMMENT '是否验证通过'\"},{\"name\":\"requirePlans\",\"definition\":\"tinyint(1) unsigned DEFAULT '0' COMMENT '是否需要购买套餐'\"},{\"name\":\"modules\",\"definition\":\"json COMMENT '用户模块'\"},{\"name\":\"priceType\",\"definition\":\"varchar(32) COMMENT '计费类型traffic|bandwidth'\"},{\"name\":\"pricePeriod\",\"definition\":\"varchar(32) COMMENT '结算周期'\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"},{\"name\":\"username_state\",\"definition\":\"UNIQUE KEY `username_state` (`username`,`state`) USING BTREE\"},{\"name\":\"username\",\"definition\":\"KEY `username` (`username`) USING BTREE\"},{\"name\":\"day\",\"definition\":\"KEY `day` (`day`) USING BTREE\"}],\"records\":[]},{\"name\":\"edgeVersions\",\"engine\":\"InnoDB\",\"charset\":\"utf8mb4_general_ci\",\"definition\":\"CREATE TABLE `edgeVersions` (\\n `id` bigint(16) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\\n `version` varchar(64) DEFAULT NULL,\\n PRIMARY KEY (`id`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='数据库结构版本'\",\"fields\":[{\"name\":\"id\",\"definition\":\"bigint(16) unsigned auto_increment COMMENT 'ID'\"},{\"name\":\"version\",\"definition\":\"varchar(64)\"}],\"indexes\":[{\"name\":\"PRIMARY\",\"definition\":\"UNIQUE KEY `PRIMARY` (`id`) USING BTREE\"}],\"records\":[]}]}"), LatestSQLResult)
if err != nil {
logs.Println("[ERROR]load sql failed: " + err.Error())
}
}