文档
测试

分页查询订单

POST
/order/query

请求头

参数名
类型
描述
必填
apitoken
string
登录返回的token
必填

请求body

application/json
参数名
类型
描述
必填
type
int
订单类型,,1:点赞,2:关注,4:进直播,5:发弹幕
可选
current
int
当前页
可选
size
int
每页数据大小
可选

说明 / 示例

### 计算任务进度方法: - ==**(nowCount / (expectCount+initCount))x100%**== 字段说明: ```json orderSn 订单编号 totalPrice 应付金额 refundPrice 实付金额 expectCount 期望量 initCount 初始量 nowCount 当前量 orderParam 下单参数(抖音号或视频地址) startTime 开始时间 endTime 结束时间 status 订单状态 ``` 订单状态: ```json 排队中,进行中,已结束,已撤销,退款中,已退款,设备失效,设备不足 ``` ```json { "status": 200, "msg": "SUCCESS", "data": { "current": 1, "size": 10, "totalPage": 1, "total": 4, "list": [ { "id": 190, "createTime": "2022-05-27 14:36:00", "updateTime": "2022-05-27 14:40:00", "orderSn": "22052702000001", "uid": 1, "orderParam": "https://v.douyin.com/FqwqB5P", "dyUid": null, "expectCount": 100, "initCount": 24, "nowCount": 26, "totalPrice": 1, "refundPrice": 0.069, "model": "快单", "type": "点赞", "startTime": "2022-05-27 14:36:00", "endTime": "2022-05-27 14:40:00", "description": "主动撤销", "status": "已撤销" }, { "id": 189, "createTime": "2022-05-27 15:43:28", "updateTime": "2022-05-26 15:44:01", "orderSn": "22052602000002", "uid": 1, "orderParam": "https://v.douyin.com/FqwqB5P", "dyUid": null, "expectCount": 10, "initCount": 14, "nowCount": 24, "totalPrice": 0.1, "refundPrice": 0.1, "model": "快单", "type": "点赞", "startTime": "2022-05-26 15:43:29", "endTime": "2022-05-26 15:44:01", "description": "正常", "status": "已结束" }, { "id": 188, "createTime": "2022-05-27 09:57:02", "updateTime": "2022-05-26 11:48:15", "orderSn": "22052602000001", "uid": 1, "orderParam": "https://v.douyin.com/NBPqvfj/", "dyUid": null, "expectCount": 100, "initCount": 319, "nowCount": 419, "totalPrice": 1, "refundPrice": 1, "model": "快单", "type": "点赞", "startTime": "2022-05-26 09:57:02", "endTime": "2022-05-26 11:48:14", "description": "正常", "status": "已结束" }, { "id": 179, "createTime": "2022-05-23 15:46:38", "updateTime": "2022-05-23 16:24:00", "orderSn": "22052302000001", "uid": 1, "orderParam": "https://v.douyin.com/FqwqB5P", "dyUid": null, "expectCount": 10, "initCount": 6, "nowCount": 14, "totalPrice": 1, "refundPrice": 0.8, "model": "快单", "type": "点赞", "startTime": "2022-05-23 15:46:38", "endTime": "2022-05-23 16:24:00", "description": "自动退款", "status": "已退款" } ] }, "success": true } ```