geekai/api/store/model/order.go
2023-11-06 17:55:46 +08:00

22 lines
316 B
Go

package model
import (
"chatplus/core/types"
"gorm.io/gorm"
)
// Order 充值订单
type Order struct {
BaseModel
UserId uint
ProductId uint
Mobile string
OrderNo string
Subject string
Amount float64
Status types.OrderStatus
Remark string
PayTime int64
DeletedAt gorm.DeletedAt
}