order_good_bestshop.go 307 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package models type OrderGoodBestshop struct { tableName struct{} `pg:"order_good_bestshop"` Id int64 //订单id OrderId int64 //货品编号 Sn string //商品编号 Bn string //货品名称 Name string //单价 Price float64 //货品数量 Nums int //订单总价 Amount float64 }