请求方式:GET
请求地址:/currency/users
返回值:
[
{
'id' => $this->id,
'user_id' => 1, // 会员ID
'currency_type' => {"id": 1, "name": "货币名称", ...}, // 货币类型详细
'amount' => 50, // 账户余额
'updated_at' => '1秒前', // 账户最后更新时间
},
...
]
请求方式:GET
请求地址:/currency/users/{id=货币类型ID}
返回值:
{
'id' => $this->id,
'user_id' => 1, // 会员ID
'currency_type' => {"id": 1, "name": "货币名称", ...}, // 货币类型详细
'amount' => 50, // 账户余额
'updated_at' => '1秒前', // 账户最后更新时间
}
Field | Type | Length | AllowNull | Default | Comment |
---|---|---|---|---|---|
id | bigint | ||||
user_id | bigint | 交易会员 | |||
currency_type_id | bigint | 货币类型 | |||
amount | decimal | 10, 2 | 账户余额 | ||
created_at | timestamp | Y | NULL | 创建时间 | |
updated_at | timestamp | Y | NULL | 更新时间 |