查询指定城市的承运商
## 查询制定城市的承运商
#### 地址
`/admin/queryCarriers`
#### 请求方法
>post
#### 请求头
>s
#### 请求参数
|参数名|类型|必填|默认值|说明|
|-|-|-|-|-|
|cityId|int|Y||城市id|
#### 请求参数示例
>s
#### 请求示例

#### 返回结果示例
```
{
"code": 200,
"msg": "success",
"result": {
"total": 8,
"list": [
{
"carrierId": 1,
"contacts": "嘉兴",
"contactPhone": "13372316870",
"carriderAddress": "嘉兴市南湖",
"provinceCityDistrictId": 3304,
"isValid": 1
},
{
"carrierId": 13,
"contacts": "桐乡",
"contactPhone": "13372316870",
"carriderAddress": "桐乡一部",
"provinceCityDistrictId": 3304,
"isValid": 1
},
{
"carrierId": 14,
"contacts": "桐乡二部",
"contactPhone": "13372316870",
"carriderAddress": "桐乡二部",
"provinceCityDistrictId": 3304,
"isValid": 1
},
{
"carrierId": 15,
"contacts": "海宁一部",
"contactPhone": "13372316870",
"carriderAddress": "海宁一部",
"provinceCityDistrictId": 3304,
"isValid": 1
},
{
"carrierId": 16,
"contacts": "海宁二部",
"contactPhone": "13372316870",
"carriderAddress": "海宁二部",
"provinceCityDistrictId": 3304,
"isValid": 1
}
],
"pageNum": 1,
"pageSize": 5,
"size": 5,
"startRow": 1,
"endRow": 5,
"pages": 2,
"prePage": 0,
"nextPage": 2,
"isFirstPage": true,
"isLastPage": false,
"hasPreviousPage": false,
"hasNextPage": true,
"navigatePages": 8,
"navigatepageNums": [
1,
2
],
"navigateFirstPage": 1,
"navigateLastPage": 2,
"firstPage": 1,
"lastPage": 2
}
}
```
#### 返回结果参数
|参数名|类型|必填|默认值|说明|
|-|-|-|-|-|
|code|Integer|Y||响应状态码|
|msg|String|Y||响应信息|
|result|string|N||承运商对象|