20 lines
274 B
Go
20 lines
274 B
Go
package orm
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Payout struct {
|
|
gorm.Model
|
|
|
|
UserID uint
|
|
User User
|
|
|
|
Description string
|
|
PayoutID string
|
|
Type string
|
|
AccountNumber string
|
|
Amount float32
|
|
Currency string
|
|
Status string
|
|
Test bool
|
|
}
|