/plugin/sell/tixian/list.json

简介

查看自己的提现申请记录

请求接口

请求方式

post

是否需要登录后才可使用

接口响应返回数据的格式

json

## 请求参数 | 参数名称 | 类型 | 示例值 | 必须 | 描述 | | ------------ | ------------ | ------------ | ------------ | ------------ | | token | String | dff4214c-4eca-42b8-ad9c-b95afd6374c0 | 是 | 当前操作用户的唯一标识。可用 [loginByOpenid.json](21930.html) 获取 | | storeid | int | 1 | 是 | 商铺编号,要操作的是哪个商铺 | ## 返回结果 #### 返回示例 ```` { "result":1, "info":"成功", "list":[ { "id":2, "userid":1, "storeid":1, "money":597, "addtime":1592829647, "state":1, "phone":"17000000000", "username":"管雷鸣", "card":"xxxxxx@xxx.com" }, { "id":1, "userid":1, "storeid":1, "money":597, "addtime":1592810373, "state":2, "phone":"17000000000", "username":"管雷鸣", "card":"xxxxxx@xxx.com" } ], "page":{ "limitStart":0, "allRecordNumber":2, "currentPageNumber":1, "everyNumber":30, "lastPageNumber":1, "nextPage":"http://127.0.0.1:9090/plugin/sell/tixian/list.json?currentPage=1", "upPage":"http://127.0.0.1:9090/plugin/sell/tixian/list.json?currentPage=1", "lastPage":"http://127.0.0.1:9090/plugin/sell/tixian/list.json?currentPage=1", "firstPage":"http://127.0.0.1:9090/plugin/sell/tixian/list.json?currentPage=1", "haveNextPage":false, "haveUpPage":false, "currentLastPage":true, "currentFirstPage":true, "upPageNumber":1, "nextPageNumber":1, "upList":[ ], "nextList":[ ] } } ```` #### 返回字段说明 | 参数名称 | 类型 | 示例值 | 描述 | | ------------ | ------------ | ------------ | ------------ | | result | int | 1 | 执行情况。
1:执行成功;
0:执行失败 | | info | String | 成功 | 若result为0,这里返回失败的原因
若result为1,是执行成功,这里返回用户的手机号 | | list | JSONArray | | 信息记录列表 | | page | JSONObject | | 分页信息 | ##### list 中每项的值说明 | 参数名称 | 类型 | 示例值 | 描述 | | ------------ | ------------ | ------------ | ------------ | | id | int | 1 | 此条提现记录的唯一id编号 | | money | int | 300 | 申请提现的金额,单位是分 | | addtime | int | 1592810373 | 申请提现的时间,10位时间戳 | | state | int | 1 | 当前提现记录的状态。共有这三种状态:
0:申请中
1:已通过并汇款
2 已拒绝。(拒绝自然会有店家会主动联系这个客户说明情况,就不需要走线上了) | | phone | String | 1700000000 | 申请提现的用户的联系手机号 | | username | String | 管雷鸣 | 申请提现的用户的姓名 | | card | String | xxxxxx | 用户提现打款的支付宝账号(或银行卡号等) | ##### page 中每项的值说明 | 参数名称 | 类型 | 示例值 | 描述 | | ------------ | ------------ | ------------ | ------------ | | allRecordNumber | int | 30 | 列表总共有多少条信息 | | currentPageNumber | int | 1 | 当前第几页,当前的页数 | | lastPageNumber | int | 5 | 最后一页的页码、共有多少页 | | haveUpPage | Boolean | true | 是否有上一页 | | haveNextPage | Boolean | true | 是否有下一页 | | upList | JSONArray | | 上几页,如果有上几页,这里才会有数据,最多显示当前页数向前的三页。 | | nextList | JSONArray | | 下几页,如果有下几页,这里才会有数据,最多显示当前页数向后的三页。 | ##### upList、nextList 中每项的值说明 | 参数名称 | 类型 | 示例值 | 描述 | | ------------ | ------------ | ------------ | ------------ | | pageNumber | int | 3 | 上几页中,其中某页的页数 |