diff --git a/structs/v2/provider.go b/structs/v2/provider.go index f420b73..e556ba1 100644 --- a/structs/v2/provider.go +++ b/structs/v2/provider.go @@ -48,7 +48,7 @@ type ProviderOption struct { // ProviderArticle 供应商商品信息 type ProviderArticle struct { - ID uint `gorm:"primary_key" json:"-"` + ID uint `gorm:"primary_key" json:"id"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` @@ -78,7 +78,7 @@ type ProviderArticle struct { // ProviderPrice 供应商成本价格 type ProviderPrice struct { - ID uint `gorm:"primary_key" json:"-"` + ID uint `gorm:"primary_key" json:"id"` CreatedAt time.Time `json:"createdAt"` ProviderArticleID uint `gorm:"index"` diff --git a/structs/v2/seller.go b/structs/v2/seller.go index b5e8d07..3df3973 100644 --- a/structs/v2/seller.go +++ b/structs/v2/seller.go @@ -47,7 +47,7 @@ type SellerOption struct { // SellerArticle 销售商商品信息 type SellerArticle struct { - ID uint `gorm:"primary_key" json:"-"` + ID uint `gorm:"primary_key" json:"id"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` // 商品的ID @@ -76,7 +76,7 @@ type SellerArticle struct { // SellerPrice 供应商成本价格 type SellerPrice struct { - ID uint `gorm:"primary_key" json:"-"` + ID uint `gorm:"primary_key" json:"id"` CreatedAt time.Time `json:"createdAt"` SellerArticleID uint `gorm:"index"` // 出售最低价