Appearance
功能概述
凭证审核列表展示模块
接口访问
接口地址
voucher/review/list
请求方式 Method
GET
Header - Authorization Type : Bearer Token
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| token | string | 32 | true | 用户身份标识令牌 | - |
请求参数
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| keyword | string | 256 | false | 搜索关键字 | - | |
| size | integer | 11 | false | 每页数量 | - |
返回值
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| list | array | true | 待审核凭证列表 |
| total | integer | true | 待审核凭证总数 |
list
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| id | integer | true | 待审核凭证ID |
| imageUrl | string | true | 凭证地址 |
| description | string | true | 描述 |
| name | string | true | 所有人 |
| mobile | integer | true | 联系方式 |
| createTime | string | true | 上传时间 |
返回示例
{
"response": {
"list": [
{
"id": 1,
"imageUrl": "地址",
"description": null,
"name": "王杰123",
"mobile": "23414143",
"createTime": "2024-12-27 14:24:50"
},
{
"id": 2,
"imageUrl": "url地址",
"description": null,
"name": "王杰123",
"mobile": "4234234",
"createTime": "2024-12-27 14:51:35"
}
],
"total": 2
},
"requestId": "cd0329cc-dad6-4a62-bba7-169af4f272a5"
}