feat: 项目基础框架+配置+Kernel

This commit is contained in:
testadmin
2026-04-29 05:35:00 +08:00
parent 6ce7adcbfb
commit 9a6151fce3
5082 changed files with 437062 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
**钱包详情**
请求地址:*/api/wallet/detail*
请求类型:*POST*
请求参数
|参数|名称|是否必填|类型|说明|
|-|-|-|-|-|
|currency|币种ID|是|integer||
|type|类型|是|string|legal:法币,change:交易币,lever:杠杆|
返回格式:*json*
```
{
"type": "ok",
"message": {
"id": 745543,
"currency": 1,
"change_balance": "0.00000000",
"lock_change_balance": "0.00000000",
"currency_name": "TCC",
"is_legal": 1,
"is_lever": 1
}
}
```