文档
测试

雇主交易订单明细

POST
/api/hirer/wallet/selectBillOne

接口描述

查询雇主交易订单明细

请求头

参数名
类型
描述
必填
Content-Type
String
application/json
必填
token
string
必填

请求参数

参数名
类型
描述
必填
id
string
订单id
必填

请求示例

``` { "id": "" } ```

响应参数

参数名
类型
描述
必填
flag
int
返回状态 示例:0
必填
msg
string
返回消息 示例:success
必填
val
object
数据字典
必填
id
string
钱包订单id
可选
hirer_id
string
雇主id
可选
c_date
string
交易时间
必填
re_type
string
收支方式。1:收入;-1:支出
必填
type
string
交易类型;1:充值;2:工资发放;3:系统赠送;4:提现;5:提现退款
必填
money
string
金额
必填
cashOut_state
string
提现状态。0:审核中;1:审核通过;-1未通过;2:提现成功;-2:提现失败;
可选
cashOut_reason
string
提现失败原因
可选

返回示例

``` { "flag": 0, "msg": "success", "val": { "c_date": "2021-11-29 14:07:52", "cashOut_reason": "提现成功", "cashOut_state": "2", "hirer_id": "42", "id": "b8715330eab693dac97a44c37e4938a8", "money": "1.00", "re_type": "-1", "relation_id": "3b3202da7e78e705253dbd5f9c7cdaa4", "state": "1", "type": "4" } } ```