mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 08:46:38 +08:00
22 lines
632 B
Go
22 lines
632 B
Go
package vo
|
|
|
|
import (
|
|
"geekai/core/types"
|
|
)
|
|
|
|
type Order struct {
|
|
BaseVo
|
|
UserId uint `json:"user_id"`
|
|
ProductId uint `json:"product_id"`
|
|
Username string `json:"username"`
|
|
OrderNo string `json:"order_no"`
|
|
TradeNo string `json:"trade_no"`
|
|
Subject string `json:"subject"`
|
|
Amount float64 `json:"amount"`
|
|
Status types.OrderStatus `json:"status"`
|
|
PayTime int64 `json:"pay_time"`
|
|
PayWay string `json:"pay_way"`
|
|
PayType string `json:"pay_type"`
|
|
Remark types.OrderRemark `json:"remark"`
|
|
}
|