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.
|
package supply
|
|
|
|
type Source struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Name string // 供货商名称
|
|
Base string // rpc服务基础名称
|
|
SkuName string // sku名称
|
|
OrderName string // order名称
|
|
}
|