|
|
|
@ -2,6 +2,7 @@ package user
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/golangkit/formatime"
|
|
|
|
|
"github.com/shopspring/decimal"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Withdraw struct {
|
|
|
|
@ -18,10 +19,12 @@ type Withdraw struct {
|
|
|
|
|
DoneTime formatime.Second `gorm:"column:done_time" json:"doneTime"`
|
|
|
|
|
CreatedAt formatime.Second `gorm:"column:created_at" json:"created_at" form:"createdAt"`
|
|
|
|
|
WaitStatus int64
|
|
|
|
|
UserTrueName string `gorm:"-" json:"user_true_name"`
|
|
|
|
|
UserTrueNo string `gorm:"-" json:"user_true_no"`
|
|
|
|
|
UserPhone string `gorm:"-" json:"user_phone"`
|
|
|
|
|
FailReason string `gorm:"fail_reason" json:"failReason"`
|
|
|
|
|
UserTrueName string `gorm:"-" json:"user_true_name"`
|
|
|
|
|
UserTrueNo string `gorm:"-" json:"user_true_no"`
|
|
|
|
|
UserPhone string `gorm:"-" json:"user_phone"`
|
|
|
|
|
FailReason string `gorm:"fail_reason" json:"failReason"`
|
|
|
|
|
TaxFee decimal.Decimal `json:"tax_fee"`
|
|
|
|
|
ActualAmount decimal.Decimal `json:"actual_amount"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|