mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
21 lines
587 B
Go
21 lines
587 B
Go
package vo
|
|
|
|
import (
|
|
"chatplus/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"`
|
|
Remark types.OrderRemark `json:"remark"`
|
|
}
|