GET api/flight/getCountryCityList/{lang}
獲取國家城市信息
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| lang | string | 
                                 Required  | 
                
Body Parameters
None.
Response Information
Resource Description
獲取國家城市信息
ReturnResultOfListOfCountryCityContract| Name | Description | Type | Additional information | 
|---|---|---|---|
| data | Collection of CountryCityContract | 
                             None.  | 
                |
| code | 
                         状态码:100成功,其他自定义  | 
                    integer | 
                             None.  | 
                
| message | 
                         提示消息  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
{
  "data": [
    {
      "countryCode": "sample string 1",
      "countryName": "sample string 2",
      "cityList": [
        {
          "cityCode": "sample string 1",
          "cityName": "sample string 2"
        },
        {
          "cityCode": "sample string 1",
          "cityName": "sample string 2"
        }
      ]
    },
    {
      "countryCode": "sample string 1",
      "countryName": "sample string 2",
      "cityList": [
        {
          "cityCode": "sample string 1",
          "cityName": "sample string 2"
        },
        {
          "cityCode": "sample string 1",
          "cityName": "sample string 2"
        }
      ]
    }
  ],
  "code": 1,
  "message": "sample string 2"
}