代码拉取完成,页面将自动刷新
package model
import (
"gitee.com/lzzandlyx/orders/db/mysql"
"gitee.com/lzzandlyx/orders/internal/svc"
"gorm.io/gorm"
)
type OrderItem struct {
gorm.Model
OrderId int64 `json:"order_id" gorm:"type:int(11);not null;comment:订单id"`
OrderSn string `json:"order_sn" gorm:"type:char(36);comment:订单编号"`
GoodsId int64 `json:"goods_id" gorm:"type:int(11);index;not null;comment:商品id"`
Quantity int64 `json:"quantity" gorm:"type:int(11);comment:购买商品数量"`
GoodsTitle string `json:"goods_title" gorm:"type:varchar(255);comment:商品名称"`
GoodsPrice string `json:"goods_price" gorm:"type:decimal(10,2);comment:商品价格"`
Img string `json:"img" gorm:"type:varchar(255);comment:商品图片"`
}
func GetOrderItem(svc *svc.ServiceContext, orderId int64) (items []OrderItem, err error) {
err = mysql.WithMySQLClient(svc, func(db *gorm.DB) error {
return db.Debug().Where("order_id = ?", orderId).Find(&items).Error
})
return
}
func GetOrderItems(svc *svc.ServiceContext, orderIds []uint) (items []OrderItem, err error) {
err = mysql.WithMySQLClient(svc, func(db *gorm.DB) error {
db = db.Debug()
return db.Select("order_id,goods_id, quantity, goods_title, goods_price, img").
Where("order_id in ?", orderIds).
Find(&items).Error
})
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。