23 lines
310 B
Go
23 lines
310 B
Go
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
|
|
}
|