diff --git a/internal/db/models/regions/region_country_dao.go b/internal/db/models/regions/region_country_dao.go index 6cbb4e73..3832488c 100644 --- a/internal/db/models/regions/region_country_dao.go +++ b/internal/db/models/regions/region_country_dao.go @@ -98,6 +98,14 @@ func (this *RegionCountryDAO) FindRegionCountryName(tx *dbs.Tx, id int64) (strin return name, nil } +// FindRegionCountryRouteCode 查找国家|地区线路代号 +func (this *RegionCountryDAO) FindRegionCountryRouteCode(tx *dbs.Tx, countryId int64) (string, error) { + return this.Query(tx). + Attr("valueId", countryId). + Result("routeCode"). + FindStringCol("") +} + // FindCountryIdWithDataId 根据数据ID查找国家 func (this *RegionCountryDAO) FindCountryIdWithDataId(tx *dbs.Tx, dataId string) (int64, error) { return this.Query(tx). diff --git a/internal/db/models/regions/region_province_dao.go b/internal/db/models/regions/region_province_dao.go index 60b8e586..6a28fd3a 100644 --- a/internal/db/models/regions/region_province_dao.go +++ b/internal/db/models/regions/region_province_dao.go @@ -77,6 +77,14 @@ func (this *RegionProvinceDAO) FindRegionProvinceName(tx *dbs.Tx, id int64) (str FindStringCol("") } +// FindRegionCountryId 获取省份对应的国家|地区 +func (this *RegionProvinceDAO) FindRegionCountryId(tx *dbs.Tx, provinceId int64) (int64, error) { + return this.Query(tx). + Attr("valueId", provinceId). + Result("countryId"). + FindInt64Col(0) +} + // FindProvinceIdWithDataId 根据数据ID查找省份 func (this *RegionProvinceDAO) FindProvinceIdWithDataId(tx *dbs.Tx, dataId string) (int64, error) { return this.Query(tx). diff --git a/internal/rpc/services/service_region_province.go b/internal/rpc/services/service_region_province.go index 910d7f8d..bf0add37 100644 --- a/internal/rpc/services/service_region_province.go +++ b/internal/rpc/services/service_region_province.go @@ -88,9 +88,9 @@ func (this *RegionProvinceService) FindAllRegionProvincesWithRegionCountryId(ctx if err != nil { return nil, err } - var result = []*pb.RegionProvince{} + var pbProvinces = []*pb.RegionProvince{} for _, province := range provinces { - result = append(result, &pb.RegionProvince{ + pbProvinces = append(pbProvinces, &pb.RegionProvince{ Id: int64(province.ValueId), Name: province.Name, Codes: province.DecodeCodes(), @@ -101,7 +101,61 @@ func (this *RegionProvinceService) FindAllRegionProvincesWithRegionCountryId(ctx } return &pb.FindAllRegionProvincesWithRegionCountryIdResponse{ - RegionProvinces: result, + RegionProvinces: pbProvinces, + }, nil +} + +// FindAllRegionProvinces 查找所有国家|地区的所有省份 +func (this *RegionProvinceService) FindAllRegionProvinces(ctx context.Context, req *pb.FindAllRegionProvincesRequest) (*pb.FindAllRegionProvincesResponse, error) { + _, _, err := this.ValidateAdminAndUser(ctx, true) + if err != nil { + return nil, err + } + + var tx = this.NullTx() + provinces, err := regions.SharedRegionProvinceDAO.FindAllEnabledProvinces(tx) + if err != nil { + return nil, err + } + + var pbProvinces = []*pb.RegionProvince{} + var countryRouteCodeCache = map[int64]string{} // countryId => routeCode + for _, province := range provinces { + // 国家|地区ID + var countryId = int64(province.CountryId) + if countryId <= 0 { + continue + } + + // 国家|地区线路 + countryRouteCode, ok := countryRouteCodeCache[countryId] + if !ok { + countryRouteCode, err = regions.SharedRegionCountryDAO.FindRegionCountryRouteCode(tx, countryId) + if err != nil { + return nil, err + } + countryRouteCodeCache[countryId] = countryRouteCode + } + if len(countryRouteCode) == 0 { + continue + } + + pbProvinces = append(pbProvinces, &pb.RegionProvince{ + Id: int64(province.ValueId), + Name: province.Name, + Codes: province.DecodeCodes(), + CustomName: province.CustomName, + CustomCodes: province.DecodeCustomCodes(), + DisplayName: province.DisplayName(), + RegionCountryId: countryId, + RegionCountry: &pb.RegionCountry{ + Id: countryId, + RouteCode: countryRouteCode, + }, + }) + } + return &pb.FindAllRegionProvincesResponse{ + RegionProvinces: pbProvinces, }, nil } diff --git a/internal/setup/sql.json b/internal/setup/sql.json index 07b7e681..e46fee02 100644 --- a/internal/setup/sql.json +++ b/internal/setup/sql.json @@ -126257,7 +126257,7 @@ "name": "edgeRegionCountries", "engine": "InnoDB", "charset": "utf8mb4_general_ci", - "definition": "CREATE TABLE `edgeRegionCountries` (\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\n `valueId` int(11) unsigned DEFAULT '0' COMMENT '实际ID',\n `valueCode` varchar(128) DEFAULT NULL COMMENT '值代号',\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 `isCommon` tinyint(1) unsigned DEFAULT '0' COMMENT '是否常用',\n PRIMARY KEY (`id`),\n KEY `valueId` (`valueId`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-国家/地区'", + "definition": "CREATE TABLE `edgeRegionCountries` (\n `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',\n `valueId` int(11) unsigned DEFAULT '0' COMMENT '实际ID',\n `valueCode` varchar(128) DEFAULT NULL COMMENT '值代号',\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 `isCommon` tinyint(1) unsigned DEFAULT '0' COMMENT '是否常用',\n `routeCode` varchar(255) DEFAULT NULL COMMENT '线路代号',\n PRIMARY KEY (`id`),\n KEY `valueId` (`valueId`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='区域-国家/地区'", "fields": [ { "name": "id", @@ -126302,6 +126302,10 @@ { "name": "isCommon", "definition": "tinyint(1) unsigned DEFAULT '0' COMMENT '是否常用'" + }, + { + "name": "routeCode", + "definition": "varchar(255) COMMENT '线路代号'" } ], "indexes": [ @@ -126324,6 +126328,7 @@ "isCommon": "1", "name": "中国", "pinyin": "[\"zhong guo\"]", + "routeCode": "world:CN", "state": "1", "valueCode": "china", "valueId": "1" @@ -126345,6 +126350,7 @@ "isCommon": "0", "name": "蒙古", "pinyin": "[\"meng gu\"]", + "routeCode": "world:MN", "state": "1", "valueCode": "", "valueId": "2" @@ -126366,6 +126372,7 @@ "isCommon": "0", "name": "朝鲜", "pinyin": "[\"chao xian\"]", + "routeCode": "world:KP", "state": "1", "valueCode": "", "valueId": "3" @@ -126387,6 +126394,7 @@ "isCommon": "1", "name": "韩国", "pinyin": "[\"han guo\"]", + "routeCode": "world:KR", "state": "1", "valueCode": "", "valueId": "4" @@ -126408,6 +126416,7 @@ "isCommon": "1", "name": "日本", "pinyin": "[\"ri ben\"]", + "routeCode": "world:JP", "state": "1", "valueCode": "", "valueId": "5" @@ -126429,6 +126438,7 @@ "isCommon": "1", "name": "菲律宾", "pinyin": "[\"fei lv bin\"]", + "routeCode": "world:PH", "state": "1", "valueCode": "", "valueId": "6" @@ -126450,6 +126460,7 @@ "isCommon": "1", "name": "越南", "pinyin": "[\"yue nan\"]", + "routeCode": "world:VN", "state": "1", "valueCode": "", "valueId": "7" @@ -126471,6 +126482,7 @@ "isCommon": "0", "name": "老挝", "pinyin": "[\"lao wo\"]", + "routeCode": "world:LA", "state": "1", "valueCode": "", "valueId": "8" @@ -126492,6 +126504,7 @@ "isCommon": "1", "name": "柬埔寨", "pinyin": "[\"jian pu zhai\"]", + "routeCode": "world:KH", "state": "1", "valueCode": "", "valueId": "9" @@ -126513,6 +126526,7 @@ "isCommon": "1", "name": "缅甸", "pinyin": "[\"mian dian\"]", + "routeCode": "world:MM", "state": "1", "valueCode": "", "valueId": "10" @@ -126534,6 +126548,7 @@ "isCommon": "1", "name": "泰国", "pinyin": "[\"tai guo\"]", + "routeCode": "world:TH", "state": "1", "valueCode": "", "valueId": "11" @@ -126555,6 +126570,7 @@ "isCommon": "1", "name": "马来西亚", "pinyin": "[\"ma lai xi ya\"]", + "routeCode": "world:MY", "state": "1", "valueCode": "", "valueId": "12" @@ -126576,6 +126592,7 @@ "isCommon": "0", "name": "文莱", "pinyin": "[\"wen lai\"]", + "routeCode": "world:BN", "state": "1", "valueCode": "", "valueId": "13" @@ -126597,6 +126614,7 @@ "isCommon": "1", "name": "新加坡", "pinyin": "[\"xin jia po\"]", + "routeCode": "world:SG", "state": "1", "valueCode": "", "valueId": "14" @@ -126618,6 +126636,7 @@ "isCommon": "1", "name": "印度尼西亚", "pinyin": "[\"yin du ni xi ya\"]", + "routeCode": "world:ID", "state": "1", "valueCode": "", "valueId": "15" @@ -126639,6 +126658,7 @@ "isCommon": "0", "name": "东帝汶", "pinyin": "[\"dong di wen\"]", + "routeCode": "world:TL", "state": "1", "valueCode": "", "valueId": "16" @@ -126660,6 +126680,7 @@ "isCommon": "0", "name": "尼泊尔", "pinyin": "[\"ni po er\"]", + "routeCode": "world:NP", "state": "1", "valueCode": "", "valueId": "17" @@ -126681,6 +126702,7 @@ "isCommon": "0", "name": "不丹", "pinyin": "[\"bu dan\"]", + "routeCode": "world:BT", "state": "1", "valueCode": "", "valueId": "18" @@ -126702,6 +126724,7 @@ "isCommon": "0", "name": "孟加拉国", "pinyin": "[\"meng jia la guo\"]", + "routeCode": "world:BD", "state": "1", "valueCode": "", "valueId": "19" @@ -126723,6 +126746,7 @@ "isCommon": "1", "name": "印度", "pinyin": "[\"yin du\"]", + "routeCode": "world:IN", "state": "1", "valueCode": "", "valueId": "20" @@ -126744,6 +126768,7 @@ "isCommon": "1", "name": "巴基斯坦", "pinyin": "[\"ba ji si tan\"]", + "routeCode": "world:PK", "state": "1", "valueCode": "", "valueId": "21" @@ -126765,6 +126790,7 @@ "isCommon": "0", "name": "斯里兰卡", "pinyin": "[\"si li lan ka\"]", + "routeCode": "world:LK", "state": "1", "valueCode": "", "valueId": "22" @@ -126786,6 +126812,7 @@ "isCommon": "0", "name": "马尔代夫", "pinyin": "[\"ma er dai fu\"]", + "routeCode": "world:MV", "state": "1", "valueCode": "", "valueId": "23" @@ -126807,6 +126834,7 @@ "isCommon": "0", "name": "哈萨克斯坦", "pinyin": "[\"ha sa ke si tan\"]", + "routeCode": "world:KZ", "state": "1", "valueCode": "", "valueId": "24" @@ -126828,6 +126856,7 @@ "isCommon": "0", "name": "吉尔吉斯斯坦", "pinyin": "[\"ji er ji si si tan\"]", + "routeCode": "world:KG", "state": "1", "valueCode": "", "valueId": "25" @@ -126849,6 +126878,7 @@ "isCommon": "0", "name": "塔吉克斯坦", "pinyin": "[\"ta ji ke si tan\"]", + "routeCode": "world:TJ", "state": "1", "valueCode": "", "valueId": "26" @@ -126870,6 +126900,7 @@ "isCommon": "0", "name": "乌兹别克斯坦", "pinyin": "[\"wu zi bie ke si tan\"]", + "routeCode": "world:UZ", "state": "1", "valueCode": "", "valueId": "27" @@ -126891,6 +126922,7 @@ "isCommon": "0", "name": "土库曼斯坦", "pinyin": "[\"tu ku man si tan\"]", + "routeCode": "world:TM", "state": "1", "valueCode": "", "valueId": "28" @@ -126912,6 +126944,7 @@ "isCommon": "0", "name": "阿富汗", "pinyin": "[\"a fu han\"]", + "routeCode": "world:AF", "state": "1", "valueCode": "", "valueId": "29" @@ -126933,6 +126966,7 @@ "isCommon": "0", "name": "伊拉克", "pinyin": "[\"yi la ke\"]", + "routeCode": "world:IQ", "state": "1", "valueCode": "", "valueId": "30" @@ -126954,6 +126988,7 @@ "isCommon": "0", "name": "伊朗", "pinyin": "[\"yi lang\"]", + "routeCode": "world:IR", "state": "1", "valueCode": "", "valueId": "31" @@ -126975,6 +127010,7 @@ "isCommon": "0", "name": "叙利亚", "pinyin": "[\"xu li ya\"]", + "routeCode": "world:SY", "state": "1", "valueCode": "", "valueId": "32" @@ -126996,6 +127032,7 @@ "isCommon": "0", "name": "约旦", "pinyin": "[\"yue dan\"]", + "routeCode": "world:JO", "state": "1", "valueCode": "", "valueId": "33" @@ -127017,6 +127054,7 @@ "isCommon": "0", "name": "黎巴嫩", "pinyin": "[\"li ba nen\"]", + "routeCode": "world:LB", "state": "1", "valueCode": "", "valueId": "34" @@ -127038,6 +127076,7 @@ "isCommon": "0", "name": "以色列", "pinyin": "[\"yi se lie\"]", + "routeCode": "world:IL", "state": "1", "valueCode": "", "valueId": "35" @@ -127059,6 +127098,7 @@ "isCommon": "0", "name": "巴勒斯坦", "pinyin": "[\"ba lei si tan\"]", + "routeCode": "world:PS", "state": "1", "valueCode": "", "valueId": "36" @@ -127080,6 +127120,7 @@ "isCommon": "0", "name": "沙特阿拉伯", "pinyin": "[\"sha te a la bo\"]", + "routeCode": "world:SA", "state": "1", "valueCode": "", "valueId": "37" @@ -127101,6 +127142,7 @@ "isCommon": "0", "name": "巴林", "pinyin": "[\"ba lin\"]", + "routeCode": "world:BH", "state": "1", "valueCode": "", "valueId": "38" @@ -127122,6 +127164,7 @@ "isCommon": "0", "name": "卡塔尔", "pinyin": "[\"ka ta er\"]", + "routeCode": "world:QA", "state": "1", "valueCode": "", "valueId": "39" @@ -127143,6 +127186,7 @@ "isCommon": "0", "name": "科威特", "pinyin": "[\"ke wei te\"]", + "routeCode": "world:KW", "state": "1", "valueCode": "", "valueId": "40" @@ -127164,6 +127208,7 @@ "isCommon": "0", "name": "阿拉伯联合酋长国", "pinyin": "[\"a la bo lian he qiu zhang guo\"]", + "routeCode": "world:UAR", "state": "1", "valueCode": "", "valueId": "41" @@ -127185,6 +127230,7 @@ "isCommon": "0", "name": "阿曼", "pinyin": "[\"a man\"]", + "routeCode": "world:OM", "state": "1", "valueCode": "", "valueId": "42" @@ -127206,6 +127252,7 @@ "isCommon": "0", "name": "也门", "pinyin": "[\"ye men\"]", + "routeCode": "world:YE", "state": "1", "valueCode": "", "valueId": "43" @@ -127227,6 +127274,7 @@ "isCommon": "0", "name": "格鲁吉亚", "pinyin": "[\"ge lu ji ya\"]", + "routeCode": "world:GE", "state": "1", "valueCode": "", "valueId": "44" @@ -127248,6 +127296,7 @@ "isCommon": "0", "name": "亚美尼亚", "pinyin": "[\"ya mei ni ya\"]", + "routeCode": "world:AM", "state": "1", "valueCode": "", "valueId": "45" @@ -127269,6 +127318,7 @@ "isCommon": "0", "name": "阿塞拜疆", "pinyin": "[\"a sai bai jiang\"]", + "routeCode": "world:AZ", "state": "1", "valueCode": "", "valueId": "46" @@ -127290,6 +127340,7 @@ "isCommon": "0", "name": "土耳其", "pinyin": "[\"tu er qi\"]", + "routeCode": "world:TR", "state": "1", "valueCode": "", "valueId": "47" @@ -127311,6 +127362,7 @@ "isCommon": "0", "name": "塞浦路斯", "pinyin": "[\"sai pu lu si\"]", + "routeCode": "world:CY", "state": "1", "valueCode": "", "valueId": "48" @@ -127332,6 +127384,7 @@ "isCommon": "0", "name": "芬兰", "pinyin": "[\"fen lan\"]", + "routeCode": "world:FI", "state": "1", "valueCode": "", "valueId": "49" @@ -127353,6 +127406,7 @@ "isCommon": "0", "name": "瑞典", "pinyin": "[\"rui dian\"]", + "routeCode": "world:SE", "state": "1", "valueCode": "", "valueId": "50" @@ -127374,6 +127428,7 @@ "isCommon": "0", "name": "挪威", "pinyin": "[\"nuo wei\"]", + "routeCode": "world:NO", "state": "1", "valueCode": "", "valueId": "51" @@ -127395,6 +127450,7 @@ "isCommon": "0", "name": "冰岛", "pinyin": "[\"bing dao\"]", + "routeCode": "world:IS", "state": "1", "valueCode": "", "valueId": "52" @@ -127416,6 +127472,7 @@ "isCommon": "0", "name": "丹麦", "pinyin": "[\"dan mai\"]", + "routeCode": "world:DK", "state": "1", "valueCode": "", "valueId": "53" @@ -127437,6 +127494,7 @@ "isCommon": "0", "name": "爱沙尼亚", "pinyin": "[\"ai sha ni ya\"]", + "routeCode": "world:EE", "state": "1", "valueCode": "", "valueId": "54" @@ -127458,6 +127516,7 @@ "isCommon": "0", "name": "拉脱维亚", "pinyin": "[\"la tuo wei ya\"]", + "routeCode": "world:LV", "state": "1", "valueCode": "", "valueId": "55" @@ -127479,6 +127538,7 @@ "isCommon": "0", "name": "立陶宛", "pinyin": "[\"li tao wan\"]", + "routeCode": "world:LT", "state": "1", "valueCode": "", "valueId": "56" @@ -127500,6 +127560,7 @@ "isCommon": "0", "name": "白俄罗斯", "pinyin": "[\"bai e luo si\"]", + "routeCode": "world:BY", "state": "1", "valueCode": "", "valueId": "57" @@ -127521,6 +127582,7 @@ "isCommon": "0", "name": "俄罗斯", "pinyin": "[\"e luo si\"]", + "routeCode": "world:RU", "state": "1", "valueCode": "", "valueId": "58" @@ -127542,6 +127604,7 @@ "isCommon": "0", "name": "乌克兰", "pinyin": "[\"wu ke lan\"]", + "routeCode": "world:UA", "state": "1", "valueCode": "", "valueId": "59" @@ -127563,6 +127626,7 @@ "isCommon": "0", "name": "摩尔多瓦", "pinyin": "[\"mo er duo wa\"]", + "routeCode": "world:MD", "state": "1", "valueCode": "", "valueId": "60" @@ -127584,6 +127648,7 @@ "isCommon": "0", "name": "波兰", "pinyin": "[\"bo lan\"]", + "routeCode": "world:PL", "state": "1", "valueCode": "", "valueId": "61" @@ -127605,6 +127670,7 @@ "isCommon": "0", "name": "捷克", "pinyin": "[\"jie ke\"]", + "routeCode": "world:CZ", "state": "1", "valueCode": "", "valueId": "62" @@ -127626,6 +127692,7 @@ "isCommon": "0", "name": "斯洛伐克", "pinyin": "[\"si luo fa ke\"]", + "routeCode": "world:SK", "state": "1", "valueCode": "", "valueId": "63" @@ -127647,6 +127714,7 @@ "isCommon": "0", "name": "匈牙利", "pinyin": "[\"xiong ya li\"]", + "routeCode": "world:HU", "state": "1", "valueCode": "", "valueId": "64" @@ -127668,6 +127736,7 @@ "isCommon": "1", "name": "德国", "pinyin": "[\"de guo\"]", + "routeCode": "world:DE", "state": "1", "valueCode": "", "valueId": "65" @@ -127689,6 +127758,7 @@ "isCommon": "0", "name": "奥地利", "pinyin": "[\"ao de li\"]", + "routeCode": "world:AT", "state": "1", "valueCode": "", "valueId": "66" @@ -127710,6 +127780,7 @@ "isCommon": "0", "name": "瑞士", "pinyin": "[\"rui shi\"]", + "routeCode": "world:CH", "state": "1", "valueCode": "", "valueId": "67" @@ -127731,6 +127802,7 @@ "isCommon": "0", "name": "列支敦士登", "pinyin": "[\"lie zhi dun shi deng\"]", + "routeCode": "world:LI", "state": "1", "valueCode": "", "valueId": "68" @@ -127752,6 +127824,7 @@ "isCommon": "1", "name": "英国", "pinyin": "[\"ying guo\"]", + "routeCode": "world:GB", "state": "1", "valueCode": "", "valueId": "69" @@ -127773,6 +127846,7 @@ "isCommon": "0", "name": "爱尔兰", "pinyin": "[\"ai er lan\"]", + "routeCode": "world:IE", "state": "1", "valueCode": "", "valueId": "70" @@ -127794,6 +127868,7 @@ "isCommon": "0", "name": "荷兰", "pinyin": "[\"he lan\"]", + "routeCode": "world:NL", "state": "1", "valueCode": "", "valueId": "71" @@ -127815,6 +127890,7 @@ "isCommon": "0", "name": "比利时", "pinyin": "[\"bi li shi\"]", + "routeCode": "world:BE", "state": "1", "valueCode": "", "valueId": "72" @@ -127836,6 +127912,7 @@ "isCommon": "0", "name": "卢森堡", "pinyin": "[\"lu sen bao\"]", + "routeCode": "world:LU", "state": "1", "valueCode": "", "valueId": "73" @@ -127857,6 +127934,7 @@ "isCommon": "1", "name": "法国", "pinyin": "[\"fa guo\"]", + "routeCode": "world:FR", "state": "1", "valueCode": "", "valueId": "74" @@ -127878,6 +127956,7 @@ "isCommon": "0", "name": "摩纳哥", "pinyin": "[\"mo na ge\"]", + "routeCode": "world:MC", "state": "1", "valueCode": "", "valueId": "75" @@ -127899,6 +127978,7 @@ "isCommon": "0", "name": "罗马尼亚", "pinyin": "[\"luo ma ni ya\"]", + "routeCode": "world:RO", "state": "1", "valueCode": "", "valueId": "76" @@ -127920,6 +128000,7 @@ "isCommon": "0", "name": "保加利亚", "pinyin": "[\"bao jia li ya\"]", + "routeCode": "world:BG", "state": "1", "valueCode": "", "valueId": "77" @@ -127941,6 +128022,7 @@ "isCommon": "0", "name": "塞尔维亚", "pinyin": "[\"sai er wei ya\"]", + "routeCode": "world:RS", "state": "1", "valueCode": "", "valueId": "78" @@ -127962,6 +128044,7 @@ "isCommon": "0", "name": "北马其顿", "pinyin": "[\"ma qi dun\"]", + "routeCode": "world:MK", "state": "1", "valueCode": "", "valueId": "79" @@ -127983,6 +128066,7 @@ "isCommon": "0", "name": "阿尔巴尼亚", "pinyin": "[\"a er ba ni ya\"]", + "routeCode": "world:AL", "state": "1", "valueCode": "", "valueId": "80" @@ -128004,6 +128088,7 @@ "isCommon": "0", "name": "希腊", "pinyin": "[\"xi la\"]", + "routeCode": "world:GR", "state": "1", "valueCode": "", "valueId": "81" @@ -128025,6 +128110,7 @@ "isCommon": "0", "name": "斯洛文尼亚", "pinyin": "[\"si luo wen ni ya\"]", + "routeCode": "world:SI", "state": "1", "valueCode": "", "valueId": "82" @@ -128046,6 +128132,7 @@ "isCommon": "0", "name": "克罗地亚", "pinyin": "[\"ke luo de ya\"]", + "routeCode": "world:HR", "state": "1", "valueCode": "", "valueId": "83" @@ -128067,6 +128154,7 @@ "isCommon": "0", "name": "波斯尼亚和墨塞哥维那", "pinyin": "[\"bo si ni ya he mo sai ge wei na\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "84" @@ -128088,6 +128176,7 @@ "isCommon": "1", "name": "意大利", "pinyin": "[\"yi da li\"]", + "routeCode": "world:IT", "state": "1", "valueCode": "", "valueId": "85" @@ -128109,6 +128198,7 @@ "isCommon": "0", "name": "梵蒂冈", "pinyin": "[\"fan di gang\"]", + "routeCode": "world:VA", "state": "1", "valueCode": "", "valueId": "86" @@ -128130,6 +128220,7 @@ "isCommon": "0", "name": "圣马力诺", "pinyin": "[\"sheng ma li nuo\"]", + "routeCode": "world:SM", "state": "1", "valueCode": "", "valueId": "87" @@ -128151,6 +128242,7 @@ "isCommon": "0", "name": "马耳他", "pinyin": "[\"ma er ta\"]", + "routeCode": "world:MT", "state": "1", "valueCode": "", "valueId": "88" @@ -128172,6 +128264,7 @@ "isCommon": "0", "name": "西班牙", "pinyin": "[\"xi ban ya\"]", + "routeCode": "world:ES", "state": "1", "valueCode": "", "valueId": "89" @@ -128193,6 +128286,7 @@ "isCommon": "0", "name": "葡萄牙", "pinyin": "[\"pu tao ya\"]", + "routeCode": "world:PT", "state": "1", "valueCode": "", "valueId": "90" @@ -128214,6 +128308,7 @@ "isCommon": "0", "name": "安道尔共和国", "pinyin": "[\"an dao er gong he guo\"]", + "routeCode": "world:AD", "state": "1", "valueCode": "", "valueId": "91" @@ -128235,6 +128330,7 @@ "isCommon": "0", "name": "埃及", "pinyin": "[\"ai ji\"]", + "routeCode": "world:EG", "state": "1", "valueCode": "", "valueId": "92" @@ -128256,6 +128352,7 @@ "isCommon": "0", "name": "利比亚", "pinyin": "[\"li bi ya\"]", + "routeCode": "world:LY", "state": "1", "valueCode": "", "valueId": "93" @@ -128277,6 +128374,7 @@ "isCommon": "0", "name": "苏丹", "pinyin": "[\"su dan\"]", + "routeCode": "world:SD", "state": "1", "valueCode": "", "valueId": "94" @@ -128298,6 +128396,7 @@ "isCommon": "0", "name": "突尼斯", "pinyin": "[\"tu ni si\"]", + "routeCode": "world:TN", "state": "1", "valueCode": "", "valueId": "95" @@ -128319,6 +128418,7 @@ "isCommon": "0", "name": "阿尔及利亚", "pinyin": "[\"a er ji li ya\"]", + "routeCode": "world:DZ", "state": "1", "valueCode": "", "valueId": "96" @@ -128340,6 +128440,7 @@ "isCommon": "0", "name": "摩洛哥", "pinyin": "[\"mo luo ge\"]", + "routeCode": "world:MA", "state": "1", "valueCode": "", "valueId": "97" @@ -128361,6 +128462,7 @@ "isCommon": "0", "name": "亚速尔群岛", "pinyin": "[\"ya su er qun dao\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "98" @@ -128382,6 +128484,7 @@ "isCommon": "0", "name": "马德拉群岛", "pinyin": "[\"ma de la qun dao\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "99" @@ -128403,6 +128506,7 @@ "isCommon": "0", "name": "埃塞俄比亚", "pinyin": "[\"ai sai e bi ya\"]", + "routeCode": "world:ET", "state": "1", "valueCode": "", "valueId": "100" @@ -128424,6 +128528,7 @@ "isCommon": "0", "name": "厄立特里亚", "pinyin": "[\"e li te li ya\"]", + "routeCode": "world:ER", "state": "1", "valueCode": "", "valueId": "101" @@ -128445,6 +128550,7 @@ "isCommon": "0", "name": "索马里", "pinyin": "[\"suo ma li\"]", + "routeCode": "world:SO", "state": "1", "valueCode": "", "valueId": "102" @@ -128466,6 +128572,7 @@ "isCommon": "0", "name": "吉布提", "pinyin": "[\"ji bu ti\"]", + "routeCode": "world:DJ", "state": "1", "valueCode": "", "valueId": "103" @@ -128487,6 +128594,7 @@ "isCommon": "0", "name": "肯尼亚", "pinyin": "[\"ken ni ya\"]", + "routeCode": "world:KE", "state": "1", "valueCode": "", "valueId": "104" @@ -128508,6 +128616,7 @@ "isCommon": "0", "name": "坦桑尼亚", "pinyin": "[\"tan sang ni ya\"]", + "routeCode": "world:TZ", "state": "1", "valueCode": "", "valueId": "105" @@ -128529,6 +128638,7 @@ "isCommon": "0", "name": "乌干达", "pinyin": "[\"wu gan da\"]", + "routeCode": "world:UG", "state": "1", "valueCode": "", "valueId": "106" @@ -128550,6 +128660,7 @@ "isCommon": "0", "name": "卢旺达", "pinyin": "[\"lu wang da\"]", + "routeCode": "world:RW", "state": "1", "valueCode": "", "valueId": "107" @@ -128571,6 +128682,7 @@ "isCommon": "0", "name": "布隆迪", "pinyin": "[\"bu long di\"]", + "routeCode": "world:BI", "state": "1", "valueCode": "", "valueId": "108" @@ -128592,6 +128704,7 @@ "isCommon": "0", "name": "塞舌尔", "pinyin": "[\"sai she er\"]", + "routeCode": "world:SC", "state": "1", "valueCode": "", "valueId": "109" @@ -128613,6 +128726,7 @@ "isCommon": "0", "name": "圣多美及普林西比", "pinyin": "[\"sheng duo mei ji pu lin xi bi\"]", + "routeCode": "world:ST", "state": "1", "valueCode": "", "valueId": "110" @@ -128634,6 +128748,7 @@ "isCommon": "0", "name": "塞内加尔", "pinyin": "[\"sai nei jia er\"]", + "routeCode": "world:SN", "state": "1", "valueCode": "", "valueId": "111" @@ -128655,6 +128770,7 @@ "isCommon": "0", "name": "冈比亚", "pinyin": "[\"gang bi ya\"]", + "routeCode": "world:GM", "state": "1", "valueCode": "", "valueId": "112" @@ -128676,6 +128792,7 @@ "isCommon": "0", "name": "马里", "pinyin": "[\"ma li\"]", + "routeCode": "world:ML", "state": "1", "valueCode": "", "valueId": "113" @@ -128697,6 +128814,7 @@ "isCommon": "0", "name": "布基纳法索", "pinyin": "[\"bu ji na fa suo\"]", + "routeCode": "world:BF", "state": "1", "valueCode": "", "valueId": "114" @@ -128718,6 +128836,7 @@ "isCommon": "0", "name": "几内亚", "pinyin": "[\"ji nei ya\"]", + "routeCode": "world:GN", "state": "1", "valueCode": "", "valueId": "115" @@ -128739,6 +128858,7 @@ "isCommon": "0", "name": "几内亚比绍", "pinyin": "[\"ji nei ya bi shao\"]", + "routeCode": "world:GW", "state": "1", "valueCode": "", "valueId": "116" @@ -128760,6 +128880,7 @@ "isCommon": "0", "name": "佛得角", "pinyin": "[\"fu de jiao\"]", + "routeCode": "world:CV", "state": "1", "valueCode": "", "valueId": "117" @@ -128781,6 +128902,7 @@ "isCommon": "0", "name": "塞拉利昂", "pinyin": "[\"sai la li ang\"]", + "routeCode": "world:SL", "state": "1", "valueCode": "", "valueId": "118" @@ -128802,6 +128924,7 @@ "isCommon": "0", "name": "利比里亚", "pinyin": "[\"li bi li ya\"]", + "routeCode": "world:LR", "state": "1", "valueCode": "", "valueId": "119" @@ -128823,6 +128946,7 @@ "isCommon": "0", "name": "科特迪瓦", "pinyin": "[\"ke te di wa\"]", + "routeCode": "world:CI", "state": "1", "valueCode": "", "valueId": "120" @@ -128844,6 +128968,7 @@ "isCommon": "0", "name": "加纳", "pinyin": "[\"jia na\"]", + "routeCode": "world:GH", "state": "1", "valueCode": "", "valueId": "121" @@ -128865,6 +128990,7 @@ "isCommon": "0", "name": "多哥", "pinyin": "[\"duo ge\"]", + "routeCode": "world:TG", "state": "1", "valueCode": "", "valueId": "122" @@ -128886,6 +129012,7 @@ "isCommon": "0", "name": "贝宁", "pinyin": "[\"bei ning\"]", + "routeCode": "world:BJ", "state": "1", "valueCode": "", "valueId": "123" @@ -128907,6 +129034,7 @@ "isCommon": "0", "name": "尼日尔", "pinyin": "[\"ni ri er\"]", + "routeCode": "world:NE", "state": "1", "valueCode": "", "valueId": "124" @@ -128928,6 +129056,7 @@ "isCommon": "0", "name": "加那利群岛", "pinyin": "[\"jia na li qun dao\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "125" @@ -128949,6 +129078,7 @@ "isCommon": "0", "name": "赞比亚", "pinyin": "[\"zan bi ya\"]", + "routeCode": "world:ZM", "state": "1", "valueCode": "", "valueId": "126" @@ -128970,6 +129100,7 @@ "isCommon": "0", "name": "安哥拉", "pinyin": "[\"an ge la\"]", + "routeCode": "world:AO", "state": "1", "valueCode": "", "valueId": "127" @@ -128991,6 +129122,7 @@ "isCommon": "0", "name": "津巴布韦", "pinyin": "[\"jin ba bu wei\"]", + "routeCode": "world:ZW", "state": "1", "valueCode": "", "valueId": "128" @@ -129012,6 +129144,7 @@ "isCommon": "0", "name": "马拉维", "pinyin": "[\"ma la wei\"]", + "routeCode": "world:MW", "state": "1", "valueCode": "", "valueId": "129" @@ -129033,6 +129166,7 @@ "isCommon": "0", "name": "莫桑比克", "pinyin": "[\"mo sang bi ke\"]", + "routeCode": "world:MZ", "state": "1", "valueCode": "", "valueId": "130" @@ -129054,6 +129188,7 @@ "isCommon": "0", "name": "博茨瓦纳", "pinyin": "[\"bo ci wa na\"]", + "routeCode": "world:BW", "state": "1", "valueCode": "", "valueId": "131" @@ -129075,6 +129210,7 @@ "isCommon": "0", "name": "纳米比亚", "pinyin": "[\"na mi bi ya\"]", + "routeCode": "world:NA", "state": "1", "valueCode": "", "valueId": "132" @@ -129096,6 +129232,7 @@ "isCommon": "0", "name": "南非", "pinyin": "[\"nan fei\"]", + "routeCode": "world:ZA", "state": "1", "valueCode": "", "valueId": "133" @@ -129117,6 +129254,7 @@ "isCommon": "0", "name": "斯威士兰", "pinyin": "[\"si wei shi lan\"]", + "routeCode": "world:SZ", "state": "1", "valueCode": "", "valueId": "134" @@ -129138,6 +129276,7 @@ "isCommon": "0", "name": "莱索托", "pinyin": "[\"lai suo tuo\"]", + "routeCode": "world:LS", "state": "1", "valueCode": "", "valueId": "135" @@ -129159,6 +129298,7 @@ "isCommon": "0", "name": "马达加斯加", "pinyin": "[\"ma da jia si jia\"]", + "routeCode": "world:MG", "state": "1", "valueCode": "", "valueId": "136" @@ -129180,6 +129320,7 @@ "isCommon": "0", "name": "科摩罗", "pinyin": "[\"ke mo luo\"]", + "routeCode": "world:KM", "state": "1", "valueCode": "", "valueId": "137" @@ -129201,6 +129342,7 @@ "isCommon": "0", "name": "毛里求斯", "pinyin": "[\"mao li qiu si\"]", + "routeCode": "world:MU", "state": "1", "valueCode": "", "valueId": "138" @@ -129222,6 +129364,7 @@ "isCommon": "0", "name": "留尼旺", "pinyin": "[\"liu ni wang\"]", + "routeCode": "world:RE", "state": "1", "valueCode": "", "valueId": "139" @@ -129243,6 +129386,7 @@ "isCommon": "0", "name": "圣赫勒拿", "pinyin": "[\"sheng he lei na\"]", + "routeCode": "world:SH", "state": "1", "valueCode": "", "valueId": "140" @@ -129264,6 +129408,7 @@ "isCommon": "1", "name": "澳大利亚", "pinyin": "[\"ao da li ya\"]", + "routeCode": "world:AU", "state": "1", "valueCode": "", "valueId": "141" @@ -129285,6 +129430,7 @@ "isCommon": "0", "name": "新西兰", "pinyin": "[\"xin xi lan\"]", + "routeCode": "world:NZ", "state": "1", "valueCode": "", "valueId": "142" @@ -129306,6 +129452,7 @@ "isCommon": "0", "name": "巴布亚新几内亚", "pinyin": "[\"ba bu ya xin ji nei ya\"]", + "routeCode": "world:PG", "state": "1", "valueCode": "", "valueId": "143" @@ -129327,6 +129474,7 @@ "isCommon": "0", "name": "所罗门群岛", "pinyin": "[\"suo luo men qun dao\"]", + "routeCode": "world:SB", "state": "1", "valueCode": "", "valueId": "144" @@ -129348,6 +129496,7 @@ "isCommon": "0", "name": "瓦努阿图共和国", "pinyin": "[\"wa nu a tu gong he guo\"]", + "routeCode": "world:VU", "state": "1", "valueCode": "", "valueId": "145" @@ -129369,6 +129518,7 @@ "isCommon": "0", "name": "密克罗尼西亚", "pinyin": "[\"mi ke luo ni xi ya\"]", + "routeCode": "world:FM", "state": "1", "valueCode": "", "valueId": "146" @@ -129390,6 +129540,7 @@ "isCommon": "0", "name": "马绍尔群岛", "pinyin": "[\"ma shao er qun dao\"]", + "routeCode": "world:MH", "state": "1", "valueCode": "", "valueId": "147" @@ -129411,6 +129562,7 @@ "isCommon": "0", "name": "帕劳", "pinyin": "[\"pa lao\"]", + "routeCode": "world:PW", "state": "1", "valueCode": "", "valueId": "148" @@ -129432,6 +129584,7 @@ "isCommon": "0", "name": "瑙鲁", "pinyin": "[\"nao lu\"]", + "routeCode": "world:NR", "state": "1", "valueCode": "", "valueId": "149" @@ -129453,6 +129606,7 @@ "isCommon": "0", "name": "基里巴斯", "pinyin": "[\"ji li ba si\"]", + "routeCode": "world:KI", "state": "1", "valueCode": "", "valueId": "150" @@ -129474,6 +129628,7 @@ "isCommon": "0", "name": "图瓦卢", "pinyin": "[\"tu wa lu\"]", + "routeCode": "world:TV", "state": "1", "valueCode": "", "valueId": "151" @@ -129495,6 +129650,7 @@ "isCommon": "0", "name": "萨摩亚", "pinyin": "[\"sa mo ya\"]", + "routeCode": "world:WS", "state": "1", "valueCode": "", "valueId": "152" @@ -129516,6 +129672,7 @@ "isCommon": "0", "name": "斐济", "pinyin": "[\"fei ji\"]", + "routeCode": "world:FJ", "state": "1", "valueCode": "", "valueId": "153" @@ -129537,6 +129694,7 @@ "isCommon": "0", "name": "汤加", "pinyin": "[\"tang jia\"]", + "routeCode": "world:TO", "state": "1", "valueCode": "", "valueId": "154" @@ -129558,6 +129716,7 @@ "isCommon": "0", "name": "库克群岛", "pinyin": "[\"ku ke qun dao\"]", + "routeCode": "world:CK", "state": "1", "valueCode": "", "valueId": "155" @@ -129579,6 +129738,7 @@ "isCommon": "0", "name": "关岛", "pinyin": "[\"guan dao\"]", + "routeCode": "world:GU", "state": "1", "valueCode": "", "valueId": "156" @@ -129600,6 +129760,7 @@ "isCommon": "0", "name": "新喀里多尼亚", "pinyin": "[\"xin ka li duo ni ya\"]", + "routeCode": "world:NC", "state": "1", "valueCode": "", "valueId": "157" @@ -129621,6 +129782,7 @@ "isCommon": "0", "name": "法属波利尼西亚", "pinyin": "[\"fa shu bo li ni xi ya\"]", + "routeCode": "world:PF", "state": "1", "valueCode": "", "valueId": "158" @@ -129642,6 +129804,7 @@ "isCommon": "0", "name": "皮特凯恩岛", "pinyin": "[\"pi te kai en dao\"]", + "routeCode": "world:PN", "state": "1", "valueCode": "", "valueId": "159" @@ -129663,6 +129826,7 @@ "isCommon": "0", "name": "瓦利斯与富图纳", "pinyin": "[\"wa li si yu fu tu na\"]", + "routeCode": "world:WF", "state": "1", "valueCode": "", "valueId": "160" @@ -129684,6 +129848,7 @@ "isCommon": "0", "name": "纽埃", "pinyin": "[\"niu ai\"]", + "routeCode": "world:NU", "state": "1", "valueCode": "", "valueId": "161" @@ -129705,6 +129870,7 @@ "isCommon": "0", "name": "托克劳", "pinyin": "[\"tuo ke lao\"]", + "routeCode": "world:TK", "state": "1", "valueCode": "", "valueId": "162" @@ -129726,6 +129892,7 @@ "isCommon": "0", "name": "美属萨摩亚", "pinyin": "[\"mei shu sa mo ya\"]", + "routeCode": "world:AS", "state": "1", "valueCode": "", "valueId": "163" @@ -129747,6 +129914,7 @@ "isCommon": "0", "name": "北马里亚纳", "pinyin": "[\"bei ma li ya na\"]", + "routeCode": "world:MP", "state": "1", "valueCode": "", "valueId": "164" @@ -129768,6 +129936,7 @@ "isCommon": "1", "name": "加拿大", "pinyin": "[\"jia na da\"]", + "routeCode": "world:CA", "state": "1", "valueCode": "", "valueId": "165" @@ -129789,6 +129958,7 @@ "isCommon": "1", "name": "美国", "pinyin": "[\"mei guo\"]", + "routeCode": "world:US", "state": "1", "valueCode": "", "valueId": "166" @@ -129810,6 +129980,7 @@ "isCommon": "1", "name": "墨西哥", "pinyin": "[\"mo xi ge\"]", + "routeCode": "world:MX", "state": "1", "valueCode": "", "valueId": "167" @@ -129831,6 +130002,7 @@ "isCommon": "0", "name": "格陵兰", "pinyin": "[\"ge ling lan\"]", + "routeCode": "world:GL", "state": "1", "valueCode": "", "valueId": "168" @@ -129852,6 +130024,7 @@ "isCommon": "0", "name": "危地马拉", "pinyin": "[\"wei de ma la\"]", + "routeCode": "world:GT", "state": "1", "valueCode": "", "valueId": "169" @@ -129873,6 +130046,7 @@ "isCommon": "0", "name": "伯利兹", "pinyin": "[\"bo li zi\"]", + "routeCode": "world:BZ", "state": "1", "valueCode": "", "valueId": "170" @@ -129894,6 +130068,7 @@ "isCommon": "0", "name": "萨尔瓦多", "pinyin": "[\"sa er wa duo\"]", + "routeCode": "world:SV", "state": "1", "valueCode": "", "valueId": "171" @@ -129915,6 +130090,7 @@ "isCommon": "0", "name": "洪都拉斯", "pinyin": "[\"hong dou la si\"]", + "routeCode": "world:HN", "state": "1", "valueCode": "", "valueId": "172" @@ -129936,6 +130112,7 @@ "isCommon": "0", "name": "尼加拉瓜", "pinyin": "[\"ni jia la gua\"]", + "routeCode": "world:NI", "state": "1", "valueCode": "", "valueId": "173" @@ -129957,6 +130134,7 @@ "isCommon": "0", "name": "哥斯达黎加", "pinyin": "[\"ge si da li jia\"]", + "routeCode": "world:CR", "state": "1", "valueCode": "", "valueId": "174" @@ -129978,6 +130156,7 @@ "isCommon": "0", "name": "巴拿马", "pinyin": "[\"ba na ma\"]", + "routeCode": "world:PA", "state": "1", "valueCode": "", "valueId": "175" @@ -129999,6 +130178,7 @@ "isCommon": "0", "name": "巴哈马", "pinyin": "[\"ba ha ma\"]", + "routeCode": "world:BS", "state": "1", "valueCode": "", "valueId": "176" @@ -130020,6 +130200,7 @@ "isCommon": "0", "name": "古巴", "pinyin": "[\"gu ba\"]", + "routeCode": "world:CU", "state": "1", "valueCode": "", "valueId": "177" @@ -130041,6 +130222,7 @@ "isCommon": "0", "name": "牙买加", "pinyin": "[\"ya mai jia\"]", + "routeCode": "world:JM", "state": "1", "valueCode": "", "valueId": "178" @@ -130062,6 +130244,7 @@ "isCommon": "0", "name": "海地", "pinyin": "[\"hai de\"]", + "routeCode": "world:HT", "state": "1", "valueCode": "", "valueId": "179" @@ -130083,6 +130266,7 @@ "isCommon": "0", "name": "多米尼加共和国", "pinyin": "[\"duo mi ni jia gong he guo\"]", + "routeCode": "world:DO", "state": "1", "valueCode": "", "valueId": "180" @@ -130104,6 +130288,7 @@ "isCommon": "0", "name": "安提瓜和巴布达", "pinyin": "[\"an ti gua he ba bu da\"]", + "routeCode": "world:AG", "state": "1", "valueCode": "", "valueId": "181" @@ -130125,6 +130310,7 @@ "isCommon": "0", "name": "圣基茨和尼维斯", "pinyin": "[\"sheng ji ci he ni wei si\"]", + "routeCode": "world:KN", "state": "1", "valueCode": "", "valueId": "182" @@ -130146,6 +130332,7 @@ "isCommon": "0", "name": "多米尼克", "pinyin": "[\"duo mi ni ke\"]", + "routeCode": "world:DM", "state": "1", "valueCode": "", "valueId": "183" @@ -130167,6 +130354,7 @@ "isCommon": "0", "name": "圣卢西亚", "pinyin": "[\"sheng lu xi ya\"]", + "routeCode": "world:LC", "state": "1", "valueCode": "", "valueId": "184" @@ -130188,6 +130376,7 @@ "isCommon": "0", "name": "圣文森特和格林纳丁斯", "pinyin": "[\"sheng wen sen te he ge lin na ding si\"]", + "routeCode": "world:VC", "state": "1", "valueCode": "", "valueId": "185" @@ -130209,6 +130398,7 @@ "isCommon": "0", "name": "格林纳达", "pinyin": "[\"ge lin na da\"]", + "routeCode": "world:GD", "state": "1", "valueCode": "", "valueId": "186" @@ -130230,6 +130420,7 @@ "isCommon": "0", "name": "巴巴多斯", "pinyin": "[\"ba ba duo si\"]", + "routeCode": "world:BB", "state": "1", "valueCode": "", "valueId": "187" @@ -130251,6 +130442,7 @@ "isCommon": "0", "name": "特立尼达和多巴哥", "pinyin": "[\"te li ni da he duo ba ge\"]", + "routeCode": "world:TT", "state": "1", "valueCode": "", "valueId": "188" @@ -130272,6 +130464,7 @@ "isCommon": "0", "name": "波多黎各", "pinyin": "[\"bo duo li ge\"]", + "routeCode": "world:PR", "state": "1", "valueCode": "", "valueId": "189" @@ -130293,6 +130486,7 @@ "isCommon": "0", "name": "英属维尔京群岛", "pinyin": "[\"ying shu wei er jing qun dao\"]", + "routeCode": "world:VG", "state": "1", "valueCode": "", "valueId": "190" @@ -130314,6 +130508,7 @@ "isCommon": "0", "name": "美属维尔京群岛", "pinyin": "[\"mei shu wei er jing qun dao\"]", + "routeCode": "world:VI", "state": "1", "valueCode": "", "valueId": "191" @@ -130335,6 +130530,7 @@ "isCommon": "0", "name": "安圭拉", "pinyin": "[\"an gui la\"]", + "routeCode": "world:AI", "state": "1", "valueCode": "", "valueId": "192" @@ -130356,6 +130552,7 @@ "isCommon": "0", "name": "蒙特塞拉特岛", "pinyin": "[\"meng te sai la te dao\"]", + "routeCode": "world:MS", "state": "1", "valueCode": "", "valueId": "193" @@ -130377,6 +130574,7 @@ "isCommon": "0", "name": "瓜德罗普", "pinyin": "[\"gua de luo pu\"]", + "routeCode": "world:GP", "state": "1", "valueCode": "", "valueId": "194" @@ -130398,6 +130596,7 @@ "isCommon": "0", "name": "马提尼克", "pinyin": "[\"ma ti ni ke\"]", + "routeCode": "world:MQ", "state": "1", "valueCode": "", "valueId": "195" @@ -130419,6 +130618,7 @@ "isCommon": "0", "name": "荷属安的列斯", "pinyin": "[\"he shu an de lie si\"]", + "routeCode": "world:AN", "state": "1", "valueCode": "", "valueId": "196" @@ -130440,6 +130640,7 @@ "isCommon": "0", "name": "阿鲁巴", "pinyin": "[\"a lu ba\"]", + "routeCode": "world:AW", "state": "1", "valueCode": "", "valueId": "197" @@ -130461,6 +130662,7 @@ "isCommon": "0", "name": "特克斯和凯科斯群岛", "pinyin": "[\"te ke si he kai ke si qun dao\"]", + "routeCode": "world:TC", "state": "1", "valueCode": "", "valueId": "198" @@ -130482,6 +130684,7 @@ "isCommon": "0", "name": "开曼群岛", "pinyin": "[\"kai man qun dao\"]", + "routeCode": "world:KY", "state": "1", "valueCode": "", "valueId": "199" @@ -130503,6 +130706,7 @@ "isCommon": "0", "name": "百慕大", "pinyin": "[\"bai mu da\"]", + "routeCode": "world:BM", "state": "1", "valueCode": "", "valueId": "200" @@ -130524,6 +130728,7 @@ "isCommon": "0", "name": "哥伦比亚", "pinyin": "[\"ge lun bi ya\"]", + "routeCode": "world:CO", "state": "1", "valueCode": "", "valueId": "201" @@ -130545,6 +130750,7 @@ "isCommon": "0", "name": "委内瑞拉", "pinyin": "[\"wei nei rui la\"]", + "routeCode": "world:VE", "state": "1", "valueCode": "", "valueId": "202" @@ -130566,6 +130772,7 @@ "isCommon": "0", "name": "圭亚那", "pinyin": "[\"gui ya na\"]", + "routeCode": "world:GY", "state": "1", "valueCode": "", "valueId": "203" @@ -130587,6 +130794,7 @@ "isCommon": "0", "name": "法属圭亚那", "pinyin": "[\"fa shu gui ya na\"]", + "routeCode": "world:GF", "state": "1", "valueCode": "", "valueId": "204" @@ -130608,6 +130816,7 @@ "isCommon": "0", "name": "苏里南", "pinyin": "[\"su li nan\"]", + "routeCode": "world:SR", "state": "1", "valueCode": "", "valueId": "205" @@ -130629,6 +130838,7 @@ "isCommon": "0", "name": "厄瓜多尔", "pinyin": "[\"e gua duo er\"]", + "routeCode": "world:EC", "state": "1", "valueCode": "", "valueId": "206" @@ -130650,6 +130860,7 @@ "isCommon": "0", "name": "秘鲁", "pinyin": "[\"mi lu\"]", + "routeCode": "world:PE", "state": "1", "valueCode": "", "valueId": "207" @@ -130671,6 +130882,7 @@ "isCommon": "0", "name": "玻利维亚", "pinyin": "[\"bo li wei ya\"]", + "routeCode": "world:BO", "state": "1", "valueCode": "", "valueId": "208" @@ -130692,6 +130904,7 @@ "isCommon": "1", "name": "巴西", "pinyin": "[\"ba xi\"]", + "routeCode": "world:BR", "state": "1", "valueCode": "", "valueId": "209" @@ -130713,6 +130926,7 @@ "isCommon": "0", "name": "智利", "pinyin": "[\"zhi li\"]", + "routeCode": "world:CL", "state": "1", "valueCode": "", "valueId": "210" @@ -130734,6 +130948,7 @@ "isCommon": "1", "name": "阿根廷", "pinyin": "[\"a gen ting\"]", + "routeCode": "world:AR", "state": "1", "valueCode": "", "valueId": "211" @@ -130755,6 +130970,7 @@ "isCommon": "0", "name": "乌拉圭", "pinyin": "[\"wu la gui\"]", + "routeCode": "world:UY", "state": "1", "valueCode": "", "valueId": "212" @@ -130776,6 +130992,7 @@ "isCommon": "0", "name": "巴拉圭", "pinyin": "[\"ba la gui\"]", + "routeCode": "world:PY", "state": "1", "valueCode": "", "valueId": "213" @@ -130797,6 +131014,7 @@ "isCommon": "0", "name": "波黑", "pinyin": "[\"bo hei\"]", + "routeCode": "world:BA", "state": "1", "valueCode": "", "valueId": "214" @@ -130818,6 +131036,7 @@ "isCommon": "0", "name": "直布罗陀", "pinyin": "[\"zhi bu luo tuo\"]", + "routeCode": "world:GI", "state": "1", "valueCode": "", "valueId": "215" @@ -130839,6 +131058,7 @@ "isCommon": "0", "name": "新喀里多尼亚群岛", "pinyin": "[\"xin ka li duo ni ya qun dao\"]", + "routeCode": "", "state": "0", "valueCode": "", "valueId": "216" @@ -130860,6 +131080,7 @@ "isCommon": "0", "name": "瓦利斯和富图纳群岛", "pinyin": "[\"wa li si he fu tu na qun dao\"]", + "routeCode": "", "state": "0", "valueCode": "", "valueId": "217" @@ -130881,6 +131102,7 @@ "isCommon": "0", "name": "泽西岛", "pinyin": "[\"ze xi dao\"]", + "routeCode": "world:JE", "state": "1", "valueCode": "", "valueId": "218" @@ -130902,6 +131124,7 @@ "isCommon": "0", "name": "黑山", "pinyin": "[\"hei shan\"]", + "routeCode": "world:ME", "state": "1", "valueCode": "", "valueId": "219" @@ -130923,6 +131146,7 @@ "isCommon": "0", "name": "英属马恩岛", "pinyin": "[\"ying shu ma en dao\"]", + "routeCode": "world:IM", "state": "1", "valueCode": "", "valueId": "220" @@ -130944,6 +131168,7 @@ "isCommon": "0", "name": "尼日利亚", "pinyin": "[\"ni ri li ya\"]", + "routeCode": "world:NG", "state": "1", "valueCode": "", "valueId": "221" @@ -130965,6 +131190,7 @@ "isCommon": "0", "name": "喀麦隆", "pinyin": "[\"ka mai long\"]", + "routeCode": "world:CM", "state": "1", "valueCode": "", "valueId": "222" @@ -130986,6 +131212,7 @@ "isCommon": "0", "name": "加蓬", "pinyin": "[\"jia peng\"]", + "routeCode": "world:GA", "state": "1", "valueCode": "", "valueId": "223" @@ -131007,6 +131234,7 @@ "isCommon": "0", "name": "乍得", "pinyin": "[\"zha de\"]", + "routeCode": "world:TD", "state": "1", "valueCode": "", "valueId": "224" @@ -131028,6 +131256,7 @@ "isCommon": "0", "name": "刚果共和国", "pinyin": "[\"gang guo gong he guo\"]", + "routeCode": "world:CG", "state": "1", "valueCode": "", "valueId": "225" @@ -131049,6 +131278,7 @@ "isCommon": "0", "name": "中非共和国", "pinyin": "[\"zhong fei gong he guo\"]", + "routeCode": "world:CF", "state": "1", "valueCode": "", "valueId": "226" @@ -131070,6 +131300,7 @@ "isCommon": "0", "name": "南苏丹", "pinyin": "[\"nan su dan\"]", + "routeCode": "world:SS", "state": "1", "valueCode": "", "valueId": "227" @@ -131091,6 +131322,7 @@ "isCommon": "0", "name": "赤道几内亚", "pinyin": "[\"chi dao ji nei ya\"]", + "routeCode": "world:GQ", "state": "1", "valueCode": "", "valueId": "228" @@ -131112,6 +131344,7 @@ "isCommon": "0", "name": "毛里塔尼亚", "pinyin": "[\"mao li ta ni ya\"]", + "routeCode": "world:MR", "state": "1", "valueCode": "", "valueId": "229" @@ -131133,6 +131366,7 @@ "isCommon": "0", "name": "刚果民主共和国", "pinyin": "[\"gang guo min zhu gong he guo\"]", + "routeCode": "world:CD", "state": "1", "valueCode": "", "valueId": "230" @@ -131154,6 +131388,7 @@ "isCommon": "0", "name": "留尼汪岛", "pinyin": "[\"liu ni wang dao\"]", + "routeCode": "world:RE", "state": "0", "valueCode": "", "valueId": "231" @@ -131175,6 +131410,7 @@ "isCommon": "0", "name": "格陵兰岛", "pinyin": "[\"ge ling lan dao\"]", + "routeCode": "world:GL", "state": "0", "valueCode": "", "valueId": "232" @@ -131196,6 +131432,7 @@ "isCommon": "0", "name": "法罗群岛", "pinyin": "[\"fa luo qun dao\"]", + "routeCode": "world:FO", "state": "1", "valueCode": "", "valueId": "233" @@ -131217,6 +131454,7 @@ "isCommon": "0", "name": "根西岛", "pinyin": "[\"gen xi dao\"]", + "routeCode": "world:GG", "state": "1", "valueCode": "", "valueId": "234" @@ -131238,6 +131476,7 @@ "isCommon": "0", "name": "百慕大群岛", "pinyin": "[\"bai mu da qun dao\"]", + "routeCode": "", "state": "0", "valueCode": "", "valueId": "235" @@ -131259,6 +131498,7 @@ "isCommon": "0", "name": "圣皮埃尔和密克隆群岛", "pinyin": "[\"sheng pi ai er he mi ke long qun dao\"]", + "routeCode": "world:PM", "state": "1", "valueCode": "", "valueId": "236" @@ -131280,6 +131520,7 @@ "isCommon": "0", "name": "法属圣马丁", "pinyin": "[\"fa shu sheng ma ding\"]", + "routeCode": "world:MF", "state": "1", "valueCode": "", "valueId": "237" @@ -131301,6 +131542,7 @@ "isCommon": "0", "name": "奥兰群岛", "pinyin": "[\"ao lan qun dao\"]", + "routeCode": "world:AX", "state": "1", "valueCode": "", "valueId": "238" @@ -131322,6 +131564,7 @@ "isCommon": "0", "name": "北马里亚纳群岛", "pinyin": "[\"bei ma li ya na qun dao\"]", + "routeCode": "", "state": "0", "valueCode": "", "valueId": "239" @@ -131343,6 +131586,7 @@ "isCommon": "0", "name": "库拉索", "pinyin": "[\"ku la suo\"]", + "routeCode": "world:CW", "state": "1", "valueCode": "", "valueId": "240" @@ -131364,6 +131608,7 @@ "isCommon": "0", "name": "博内尔岛", "pinyin": "[\"bo nei er dao\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "241" @@ -131385,6 +131630,7 @@ "isCommon": "0", "name": "圣马丁岛", "pinyin": "[\"sheng ma ding dao\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "242" @@ -131406,6 +131652,7 @@ "isCommon": "0", "name": "圣巴泰勒米岛", "pinyin": "[\"sheng ba tai lei mi dao\"]", + "routeCode": "world:BL", "state": "1", "valueCode": "", "valueId": "243" @@ -131427,6 +131674,7 @@ "isCommon": "0", "name": "福克兰群岛", "pinyin": "[\"fu ke lan qun dao\"]", + "routeCode": "world:FK", "state": "1", "valueCode": "", "valueId": "244" @@ -131448,6 +131696,7 @@ "isCommon": "0", "name": "圣多美和普林西比", "pinyin": "[\"sheng duo mei he pu lin xi bi\"]", + "routeCode": "", "state": "0", "valueCode": "", "valueId": "245" @@ -131469,6 +131718,7 @@ "isCommon": "0", "name": "英属印度洋领地", "pinyin": "[\"ying shu yin du yang ling de\"]", + "routeCode": "world:IO", "state": "1", "valueCode": "", "valueId": "246" @@ -131490,6 +131740,7 @@ "isCommon": "0", "name": "东萨摩亚", "pinyin": "[\"dong sa mo ya\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "247" @@ -131511,6 +131762,7 @@ "isCommon": "0", "name": "诺福克岛", "pinyin": "[\"nuo fu ke dao\"]", + "routeCode": "world:NF", "state": "1", "valueCode": "", "valueId": "248" @@ -131532,6 +131784,7 @@ "isCommon": "0", "name": "马约特岛", "pinyin": "[\"ma yue te dao\"]", + "routeCode": "world:YT", "state": "1", "valueCode": "", "valueId": "249" @@ -131553,6 +131806,7 @@ "isCommon": "0", "name": "科索沃", "pinyin": "[\"ke suo wo\", \"Kosovo\"]", + "routeCode": "world:XK", "state": "1", "valueCode": "", "valueId": "250" @@ -131574,6 +131828,7 @@ "isCommon": "0", "name": "荷属圣马丁", "pinyin": "[\"he shu sheng ma ding\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "251" @@ -131595,6 +131850,7 @@ "isCommon": "0", "name": "南乔治亚岛和南桑威奇群岛", "pinyin": "[\"nan qiao zhi ya dao he nan sang wei qi qun dao\", \"South Georgia and The South Sandwich Islands\", \"SGSSI\"]", + "routeCode": "world:GS", "state": "1", "valueCode": "", "valueId": "252" @@ -131616,6 +131872,7 @@ "isCommon": "0", "name": "南极洲", "pinyin": "[\"nan ji zhou\"]", + "routeCode": "world:AQ", "state": "1", "valueCode": "", "valueId": "253" @@ -131637,6 +131894,7 @@ "isCommon": "0", "name": "阿森松岛", "pinyin": "[\"a sen song dao\", \"Ascension Island\"]", + "routeCode": "world:SH", "state": "1", "valueCode": "", "valueId": "254" @@ -131658,6 +131916,7 @@ "isCommon": "0", "name": "圣诞岛", "pinyin": "[\"sheng dan dao\"]", + "routeCode": "world:CX", "state": "1", "valueCode": "", "valueId": "255" @@ -131679,6 +131938,7 @@ "isCommon": "0", "name": "欧洲", "pinyin": "[\"ou zhou\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "256" @@ -131700,6 +131960,7 @@ "isCommon": "0", "name": "非洲", "pinyin": "[\"fei zhou\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "257" @@ -131721,6 +131982,7 @@ "isCommon": "0", "name": "北美", "pinyin": "[\"bei mei\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "258" @@ -131742,6 +132004,7 @@ "isCommon": "0", "name": "拉美", "pinyin": "[\"la mei\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "259" @@ -131763,6 +132026,7 @@ "isCommon": "0", "name": "亚太", "pinyin": "[\"ya tai\"]", + "routeCode": "", "state": "1", "valueCode": "", "valueId": "260" @@ -131784,6 +132048,7 @@ "isCommon": "1", "name": "中国香港", "pinyin": "[\"zhong guo xiang gang\", \"Hongkong\"]", + "routeCode": "", "state": "1", "valueCode": "china_hk", "valueId": "261" @@ -131805,6 +132070,7 @@ "isCommon": "1", "name": "中国台湾", "pinyin": "[\"zhong guo tai wan\", \"tai wan\", \"Taiwan\"]", + "routeCode": "", "state": "1", "valueCode": "china_tw", "valueId": "262" @@ -131826,6 +132092,7 @@ "isCommon": "1", "name": "中国澳门", "pinyin": "[\"zhong guo ao men\", \"ao men\", \"Macao\"]", + "routeCode": "", "state": "1", "valueCode": "china_mo", "valueId": "263" @@ -131847,6 +132114,7 @@ "isCommon": "1", "name": "中国内地", "pinyin": "[\"zhong guo nei di\", \"zhong guo da lu\"]", + "routeCode": "", "state": "1", "valueCode": "china_mainland", "valueId": "264" @@ -139187,7 +139455,7 @@ { "id": 38, "values": { - "codes": "[\"华盛顿\"]", + "codes": "[\"华盛顿\", \"华盛顿州\", \"Washington\"]", "countryId": "166", "dataId": "", "id": "38", @@ -143927,7 +144195,7 @@ { "id": 276, "values": { - "codes": "[\"加利福尼亚\"]", + "codes": "[\"加利福尼亚\", \"加利福尼亚州\", \"California\"]", "countryId": "166", "dataId": "", "id": "276", @@ -146407,7 +146675,7 @@ { "id": 400, "values": { - "codes": "[\"弗吉尼亚\"]", + "codes": "[\"弗吉尼亚\", \"弗吉尼亚州\", \"Virginia\"]", "countryId": "166", "dataId": "", "id": "400", @@ -146447,7 +146715,7 @@ { "id": 402, "values": { - "codes": "[\"南加利福尼亚\"]", + "codes": "[\"南加利福尼亚\", \"Southern California\"]", "countryId": "166", "dataId": "", "id": "402", @@ -148167,7 +148435,7 @@ { "id": 488, "values": { - "codes": "[\"新泽西\"]", + "codes": "[\"新泽西\", \"新泽西州\", \"New Jersey\"]", "countryId": "166", "dataId": "", "id": "488", @@ -148187,7 +148455,7 @@ { "id": 489, "values": { - "codes": "[\"田纳西\"]", + "codes": "[\"田纳西\", \"田纳西州\", \"Tennessee\"]", "countryId": "166", "dataId": "", "id": "489", @@ -148267,7 +148535,7 @@ { "id": 493, "values": { - "codes": "[\"马里兰\"]", + "codes": "[\"马里兰\", \"马里兰州\", \"Maryland\"]", "countryId": "166", "dataId": "", "id": "493", @@ -151327,7 +151595,7 @@ { "id": 646, "values": { - "codes": "[\"俄亥俄\"]", + "codes": "[\"俄亥俄\", \"俄亥俄州\", \"Ohio\"]", "countryId": "166", "dataId": "", "id": "646", @@ -151347,7 +151615,7 @@ { "id": 647, "values": { - "codes": "[\"俄勒冈\"]", + "codes": "[\"俄勒冈\", \"俄勒冈州\", \"Oregon\"]", "countryId": "166", "dataId": "", "id": "647", @@ -151367,7 +151635,7 @@ { "id": 648, "values": { - "codes": "[\"纽约\"]", + "codes": "[\"纽约\", \"纽约州\", \"New York\"]", "countryId": "166", "dataId": "", "id": "648", @@ -151387,7 +151655,7 @@ { "id": 649, "values": { - "codes": "[\"亚拉巴马\"]", + "codes": "[\"亚拉巴马\", \"亚拉巴马州\", \"阿拉巴马\", \"阿拉巴马州\", \"Alabama\"]", "countryId": "166", "dataId": "", "id": "649", @@ -151407,7 +151675,7 @@ { "id": 650, "values": { - "codes": "[\"内华达\"]", + "codes": "[\"内华达\", \"内华达州\", \"Nevada\"]", "countryId": "166", "dataId": "", "id": "650", @@ -151427,7 +151695,7 @@ { "id": 651, "values": { - "codes": "[\"德克萨斯\", \"得克萨斯\"]", + "codes": "[\"德克萨斯\", \"德克萨斯州\", \"得克萨斯\", \"得克萨斯州\", \"Texas\"]", "countryId": "166", "dataId": "", "id": "651", @@ -151447,7 +151715,7 @@ { "id": 652, "values": { - "codes": "[\"明尼苏达\"]", + "codes": "[\"明尼苏达\", \"明尼苏达州\", \"Minnesota\"]", "countryId": "166", "dataId": "", "id": "652", @@ -151467,7 +151735,7 @@ { "id": 653, "values": { - "codes": "[\"科罗拉多\"]", + "codes": "[\"科罗拉多\", \"科罗拉多州\", \"Colorado\"]", "countryId": "166", "dataId": "", "id": "653", @@ -151487,7 +151755,7 @@ { "id": 654, "values": { - "codes": "[\"伊利诺伊\"]", + "codes": "[\"伊利诺伊\", \"伊利诺伊州\", \"伊利诺斯\", \"伊利诺斯州\", \"Illinois\"]", "countryId": "166", "dataId": "", "id": "654", @@ -151507,7 +151775,7 @@ { "id": 655, "values": { - "codes": "[\"佐治亚\"]", + "codes": "[\"佐治亚\", \"佐治亚州\", \"乔治亚\", \"乔治亚州\", \"Georgia\"]", "countryId": "166", "dataId": "", "id": "655", @@ -151527,7 +151795,7 @@ { "id": 656, "values": { - "codes": "[\"印第安纳\"]", + "codes": "[\"印第安纳\", \"印第安纳州\", \"Indiana\"]", "countryId": "166", "dataId": "", "id": "656", @@ -151547,7 +151815,7 @@ { "id": 657, "values": { - "codes": "[\"宾夕法尼亚\"]", + "codes": "[\"宾夕法尼亚\", \"宾夕法尼亚州\", \"Pennsylvania\"]", "countryId": "166", "dataId": "", "id": "657", @@ -151567,7 +151835,7 @@ { "id": 658, "values": { - "codes": "[\"康涅狄格\"]", + "codes": "[\"康涅狄格\", \"康涅狄格州\", \"Connecticut\"]", "countryId": "166", "dataId": "", "id": "658", @@ -151587,7 +151855,7 @@ { "id": 659, "values": { - "codes": "[\"马萨诸塞\"]", + "codes": "[\"马萨诸塞\", \"马萨诸塞州\", \"Massachusetts\"]", "countryId": "166", "dataId": "", "id": "659", @@ -151607,7 +151875,7 @@ { "id": 660, "values": { - "codes": "[\"佛罗里达\"]", + "codes": "[\"佛罗里达\", \"佛罗里达州\", \"Florida\"]", "countryId": "166", "dataId": "", "id": "660", @@ -151627,7 +151895,7 @@ { "id": 661, "values": { - "codes": "[\"密苏里\"]", + "codes": "[\"密苏里\", \"密苏里州\", \"Missouri\"]", "countryId": "166", "dataId": "", "id": "661", @@ -151647,7 +151915,7 @@ { "id": 662, "values": { - "codes": "[\"北卡罗来纳\"]", + "codes": "[\"北卡罗来纳\", \"北卡罗来纳州\", \"North Carolina\"]", "countryId": "166", "dataId": "", "id": "662", @@ -151667,7 +151935,7 @@ { "id": 663, "values": { - "codes": "[\"堪萨斯\"]", + "codes": "[\"堪萨斯\", \"堪萨斯州\", \"Kansas\"]", "countryId": "166", "dataId": "", "id": "663", @@ -151687,7 +151955,7 @@ { "id": 664, "values": { - "codes": "[\"密歇根\"]", + "codes": "[\"密歇根\", \"密歇根州\", \"Michigan\"]", "countryId": "166", "dataId": "", "id": "664", @@ -151707,7 +151975,7 @@ { "id": 665, "values": { - "codes": "[\"肯塔基\"]", + "codes": "[\"肯塔基\", \"肯塔基州\", \"Kentucky\"]", "countryId": "166", "dataId": "", "id": "665", @@ -151727,7 +151995,7 @@ { "id": 666, "values": { - "codes": "[\"亚利桑那\"]", + "codes": "[\"亚利桑那\", \"亚利桑那州\", \"Arizona\"]", "countryId": "166", "dataId": "", "id": "666", @@ -151747,7 +152015,7 @@ { "id": 667, "values": { - "codes": "[\"犹他\"]", + "codes": "[\"犹他\", \"犹他州\", \"Utah\"]", "countryId": "166", "dataId": "", "id": "667", @@ -151767,7 +152035,7 @@ { "id": 668, "values": { - "codes": "[\"华盛顿特区\", \"华盛顿哥伦比亚特区\"]", + "codes": "[\"华盛顿特区\", \"华盛顿哥伦比亚特区\", \"Washington, D.C.\"]", "countryId": "166", "dataId": "", "id": "668", @@ -151787,7 +152055,7 @@ { "id": 669, "values": { - "codes": "[\"俄克拉何马\", \"俄克拉荷马\"]", + "codes": "[\"俄克拉何马\", \"俄克拉何马州\", \"俄克拉荷马\", \"俄克拉荷马州\", \"Oklahoma\"]", "countryId": "166", "dataId": "", "id": "669", @@ -151827,7 +152095,7 @@ { "id": 671, "values": { - "codes": "[\"威斯康星\"]", + "codes": "[\"威斯康星\", \"威斯康星州\", \"威斯康辛\", \"威斯康辛州\", \"Wisconsin\"]", "countryId": "166", "dataId": "", "id": "671", @@ -151847,7 +152115,7 @@ { "id": 672, "values": { - "codes": "[\"佛蒙特\"]", + "codes": "[\"佛蒙特\", \"佛蒙特州\", \"Vermont\"]", "countryId": "166", "dataId": "", "id": "672", @@ -151867,7 +152135,7 @@ { "id": 673, "values": { - "codes": "[\"新墨西哥\"]", + "codes": "[\"新墨西哥\", \"新墨西哥州\", \"New Mexico\"]", "countryId": "166", "dataId": "", "id": "673", @@ -151887,7 +152155,7 @@ { "id": 674, "values": { - "codes": "[\"内布拉斯加\"]", + "codes": "[\"内布拉斯加\", \"内布拉斯加州\", \"Nebraska\"]", "countryId": "166", "dataId": "", "id": "674", @@ -151947,7 +152215,7 @@ { "id": 677, "values": { - "codes": "[\"阿肯色\"]", + "codes": "[\"阿肯色\", \"阿肯色州\", \"Arkansas\"]", "countryId": "166", "dataId": "", "id": "677", @@ -151967,7 +152235,7 @@ { "id": 678, "values": { - "codes": "[\"路易斯安那\"]", + "codes": "[\"路易斯安那\", \"路易斯安那州\", \"Louisiana\"]", "countryId": "166", "dataId": "", "id": "678", @@ -151987,7 +152255,7 @@ { "id": 679, "values": { - "codes": "[\"罗得岛\"]", + "codes": "[\"罗得岛\", \"罗得岛州\", \"Rhode Island\"]", "countryId": "166", "dataId": "", "id": "679", @@ -153927,7 +154195,7 @@ { "id": 776, "values": { - "codes": "[\"南卡罗来纳\"]", + "codes": "[\"南卡罗来纳\", \"南卡罗来纳州\", \"South Carolina\"]", "countryId": "166", "dataId": "", "id": "776", @@ -153947,7 +154215,7 @@ { "id": 777, "values": { - "codes": "[\"怀俄明\"]", + "codes": "[\"怀俄明\", \"怀俄明州\", \"Wyoming\"]", "countryId": "166", "dataId": "", "id": "777", @@ -153967,7 +154235,7 @@ { "id": 778, "values": { - "codes": "[\"夏威夷\"]", + "codes": "[\"夏威夷\", \"夏威夷州\", \"Hawaii\"]", "countryId": "166", "dataId": "", "id": "778", @@ -153987,7 +154255,7 @@ { "id": 779, "values": { - "codes": "[\"爱达荷\"]", + "codes": "[\"爱达荷\", \"爱达荷州\", \"Idaho\"]", "countryId": "166", "dataId": "", "id": "779", @@ -154027,7 +154295,7 @@ { "id": 781, "values": { - "codes": "[\"艾奥瓦\"]", + "codes": "[\"艾奥瓦\", \"艾奥瓦州\", \"爱荷华\", \"爱荷华州\", \"Iowa\"]", "countryId": "166", "dataId": "", "id": "781", @@ -154047,7 +154315,7 @@ { "id": 782, "values": { - "codes": "[\"特拉华\"]", + "codes": "[\"特拉华\", \"特拉华州\", \"Delaware\"]", "countryId": "166", "dataId": "", "id": "782", @@ -154067,7 +154335,7 @@ { "id": 783, "values": { - "codes": "[\"密西西比\"]", + "codes": "[\"密西西比\", \"密西西比州\", \"Mississippi\"]", "countryId": "166", "dataId": "", "id": "783", @@ -154107,7 +154375,7 @@ { "id": 785, "values": { - "codes": "[\"西弗吉尼亚\"]", + "codes": "[\"西弗吉尼亚\", \"西弗吉尼亚州\", \"West Virginia\"]", "countryId": "166", "dataId": "", "id": "785", @@ -154127,7 +154395,7 @@ { "id": 786, "values": { - "codes": "[\"新罕布什尔\"]", + "codes": "[\"新罕布什尔\", \"新罕布什尔州\", \"New Hampshire\"]", "countryId": "166", "dataId": "", "id": "786", @@ -154147,7 +154415,7 @@ { "id": 787, "values": { - "codes": "[\"阿拉斯加\"]", + "codes": "[\"阿拉斯加\", \"阿拉斯加州\", \"Alaska\"]", "countryId": "166", "dataId": "", "id": "787", @@ -154167,7 +154435,7 @@ { "id": 788, "values": { - "codes": "[\"缅因\"]", + "codes": "[\"缅因\", \"缅因州\", \"Maine\"]", "countryId": "166", "dataId": "", "id": "788", @@ -154187,7 +154455,7 @@ { "id": 789, "values": { - "codes": "[\"北达科他\"]", + "codes": "[\"北达科他\", \"北达科他州\", \"North Dakota\"]", "countryId": "166", "dataId": "", "id": "789", @@ -154207,7 +154475,7 @@ { "id": 790, "values": { - "codes": "[\"南达科他\"]", + "codes": "[\"南达科他\", \"南达科他州\", \"South Dakota\"]", "countryId": "166", "dataId": "", "id": "790", @@ -154227,7 +154495,7 @@ { "id": 791, "values": { - "codes": "[\"蒙大拿\"]", + "codes": "[\"蒙大拿\", \"蒙大拿州\", \"Montana\"]", "countryId": "166", "dataId": "", "id": "791",