package orm import ( "gorm.io/gorm" ) type Payout struct { gorm.Model UserID uint User User Description string IdempotenceKey string PayoutID string Type string AccountNumber string Amount float32 Currency string Status string Test bool }