[TOC]
简要描述
请求URL
http://localhost:240/list
请求方式
header参数
参数名 |
必选 |
类型 |
说明 |
Authorization |
是 |
string |
用户登录成功时返回的token |
请求参数
参数名 |
必选 |
类型 |
说明 |
page |
否 |
int |
页数 |
pageSize |
否 |
int |
单页数据条数 |
返回示例
{
"code": "00000",
"msg":"获取成功",
"data": [
{
"_id":"62a9790c705a551f92100bd3",
"name": "阿巴阿巴",
"type": "不知道",
"tel": "1904832094",
"is_pass":"1"
},
{
"_id":"62a9790c705a551f92100bd3",
"name": "阿巴阿巴",
"type": "不知道",
"tel": "1904832094",
"is_pass":"1"
}
]
}
返回参数说明
参数名 |
类型 |
说明 |
code |
int |
状态码 |
msg |
string |
提示信息 |
data |
array |
数据 |
_id |
string |
id |
name |
string |
节目名称 |
type |
string |
类型 |
tel |
string |
电话 |
is_pass |
int |
是否通过 1为通过,2为未通过 |
备注