审查视图

pkg/infrastructure/pg/models/order_good_bestshop.go 307 字节
1 2 3 4 5 6
package models

type OrderGoodBestshop struct {
	tableName struct{} `pg:"order_good_bestshop"`
	Id        int64
	//订单id
7
	OrderId int64
8 9 10 11 12 13 14 15 16 17 18 19 20
	//货品编号
	Sn string
	//商品编号
	Bn string
	//货品名称
	Name string
	//单价
	Price float64
	//货品数量
	Nums int
	//订单总价
	Amount float64
}