package http_model type WithdrawAmountRequest struct { SupplierId int `json:"supplier_id"` // 服务商ID } type WithdrawAmountData struct { WithdrawAble float64 `json:"withdraw_able"` // 可提现 PendingWithdraw float64 `json:"pending_withdraw"` // 提现中 Withdrawn float64 `json:"withdrawn"` // 已提现 } func NewWithdrawAmountRequest() *WithdrawAmountRequest { return new(WithdrawAmountRequest) } func NewWithdrawAmountResponse() *CommonResponse { resp := new(CommonResponse) resp.Data = new(WithdrawAmountData) return resp }