good.go
648 字节
package models
import (
"gitlab.fjmaimaimai.com/mmm-go-pp/partner01/pkg/domain"
"time"
)
type Good struct {
tableName string `pg:"goods,alias:good"`
// 商品id
GoodId int64 `pg:",pk"`
// 预定的货品数量
GoodNum int
// 商品分红支付信息
GoodDividend *domain.Dividend
// 商品分红支付状态
GoodDividendStatus int
// 商品名称
GoodName string
// 商品单价
GoodTotalPrice float64
// 备注
Remarks string
// 订单编号
OrderNo string
// 商品详情
GoodDetail string
// 创建时间
CreateAt time.Time
// 更新时间
UpdateAt time.Time
// 删除时间
DeleteAt time.Time `pg:",soft_delete"`
}