You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
8 months ago
|
package model
|
||
|
|
||
|
import (
|
||
|
"github.com/shopspring/decimal"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type OrderConsignmentPayment struct {
|
||
|
Id uint `gorm:"primaryKey"`
|
||
|
OrderId uint // 订单id
|
||
|
Amount decimal.Decimal // 金额
|
||
|
Proof string // 支付凭证
|
||
|
CreatedUserId uint // 操作人id
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
}
|