文档
测试

雇员交易订单明细

POST
/api/emp/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-24 09:28:11", "cashOut_reason": "没钱", "cashOut_state": "-1", "emp_id": "42", "id": "4072b506ecc7927d9f2b6aeedf4ec04b", "money": "33.91", "re_type": "-1", "relation_id": "1175d38dd7392bc88c37713d2b72b13d", "state": "1", "type": "4" } } ```