mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 08:46:38 +08:00
23 lines
358 B
Go
23 lines
358 B
Go
package model
|
|
|
|
import (
|
|
"geekai/core/types"
|
|
)
|
|
|
|
// Order 充值订单
|
|
type Order struct {
|
|
BaseModel
|
|
UserId uint
|
|
ProductId uint
|
|
Username string
|
|
OrderNo string
|
|
TradeNo string
|
|
Subject string
|
|
Amount float64
|
|
Status types.OrderStatus
|
|
Remark string
|
|
PayTime int64
|
|
PayWay string // 支付渠道
|
|
PayType string // 支付类型
|
|
}
|