1bug修复

This commit is contained in:
2025-05-19 09:47:49 +08:00
parent 44ba8bfbf1
commit 7b50873de3
7 changed files with 179 additions and 11 deletions

View File

@ -0,0 +1,11 @@
package binancedto
import "github.com/shopspring/decimal"
type BinanceTransfer struct {
Type string `json:"type" content:"枚举 MAIN_UMFUTURE-现货到u合约"`
Asset string `json:"asset" content:"币种"`
Amount decimal.Decimal `json:"amount" content:"数量"`
FromSymbol string `json:"fromSymbol" content:"转出币种"`
ToSymbol string `json:"toSymbol" content:"转入币种"`
}