mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 05:37:41 +08:00
20 lines
538 B
Go
20 lines
538 B
Go
package vo
|
|
|
|
import (
|
|
"chatplus/core/types"
|
|
)
|
|
|
|
type Order struct {
|
|
BaseVo
|
|
UserId uint `json:"user_id"`
|
|
ProductId uint `json:"product_id"`
|
|
Mobile string `json:"mobile"`
|
|
OrderNo string `json:"order_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"`
|
|
}
|