国家分页查询
## 国家分页查询
**接口地址** `/conference/country/page`
**请求方式** `GET`
**consumes** ``
**produces** `["*/*"]`
**接口描述** `国家分页查询`
**请求参数**
| 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
| -------- | ---- | ----- | ----- | ------- | ------ |
| name | 名称 | query | false | string | |
| pageNum | 页码 | query | false | integer | |
| pageSize | 步长 | query | false | integer | |
**响应状态**
| 状态码 | 说明 | schema |
| ---- | ------------ | ----------------- |
| 200 | OK | R«IPage«Country»» |
| 401 | Unauthorized | |
| 403 | Forbidden | |
| 404 | Not Found | |
**响应参数**
| 参数名称 | 参数说明 | 类型 | schema |
| ------- | ---- | -------------- | -------------- |
| code | 状态码 | integer(int32) | integer(int32) |
| data | 承载数据 | IPage«Country» | IPage«Country» |
| msg | 返回消息 | string | |
| success | 是否成功 | boolean | |
**schema属性说明**
**IPage«Country»**
| 参数名称 | 参数说明 | 类型 | schema |
| ----------- | ---- | -------------- | ------- |
| current | | integer(int64) | |
| hitCount | | boolean | |
| pages | | integer(int64) | |
| records | | array | Country |
| searchCount | | boolean | |
| size | | integer(int64) | |
| total | | integer(int64) | |
**Country**
| 参数名称 | 参数说明 | 类型 | schema |
| ----------- | ----- | ----------------- | ------ |
| createTime | 创建时间 | string(date-time) | |
| createUser | 创建人 | string | |
| englishName | 英文名称 | string | |
| id | 主键 | integer(int32) | |
| isDelete | 是否已删除 | integer(int32) | |
| level | 级别 | string | |
| name | 名称 | string | |
| updateTime | 更新时间 | string(date-time) | |
| updateUser | 更新人 | string | |
**响应示例**
```json
{
"code": 0,
"data": {
"current": 0,
"hitCount": true,
"pages": 0,
"records": [
{
"createTime": "",
"createUser": "",
"englishName": "",
"id": 0,
"isDelete": 0,
"level": "",
"name": "",
"updateTime": "",
"updateUser": ""
}
],
"searchCount": true,
"size": 0,
"total": 0
},
"msg": "",
"success": true
}
```