You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
14 lines
306 B
package model
|
|
|
|
import "bkb-seller/global"
|
|
|
|
type OrderGoodsSpecs struct {
|
|
global.MG_MODEL
|
|
TbGoodsSpecsBase
|
|
OrderID string `gorm:"size:50" json:"orderID"` // 订单id
|
|
OrderGoodsId uint `json:"orderGoodsId"` //
|
|
}
|
|
|
|
func (OrderGoodsSpecs) TableName() string {
|
|
return "order_goods_specs"
|
|
}
|
|
|