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.
15 lines
306 B
15 lines
306 B
6 months ago
|
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"
|
||
|
}
|