feat json返回id
This commit is contained in:
parent
b2d0293648
commit
6f81fc7614
@ -48,7 +48,7 @@ type ProviderOption struct {
|
|||||||
|
|
||||||
// ProviderArticle 供应商商品信息
|
// ProviderArticle 供应商商品信息
|
||||||
type ProviderArticle struct {
|
type ProviderArticle struct {
|
||||||
ID uint `gorm:"primary_key" json:"-"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
|
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
@ -78,7 +78,7 @@ type ProviderArticle struct {
|
|||||||
|
|
||||||
// ProviderPrice 供应商成本价格
|
// ProviderPrice 供应商成本价格
|
||||||
type ProviderPrice struct {
|
type ProviderPrice struct {
|
||||||
ID uint `gorm:"primary_key" json:"-"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
|
|
||||||
ProviderArticleID uint `gorm:"index"`
|
ProviderArticleID uint `gorm:"index"`
|
||||||
|
@ -47,7 +47,7 @@ type SellerOption struct {
|
|||||||
|
|
||||||
// SellerArticle 销售商商品信息
|
// SellerArticle 销售商商品信息
|
||||||
type SellerArticle struct {
|
type SellerArticle struct {
|
||||||
ID uint `gorm:"primary_key" json:"-"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
// 商品的ID
|
// 商品的ID
|
||||||
@ -76,7 +76,7 @@ type SellerArticle struct {
|
|||||||
|
|
||||||
// SellerPrice 供应商成本价格
|
// SellerPrice 供应商成本价格
|
||||||
type SellerPrice struct {
|
type SellerPrice struct {
|
||||||
ID uint `gorm:"primary_key" json:"-"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
SellerArticleID uint `gorm:"index"`
|
SellerArticleID uint `gorm:"index"`
|
||||||
// 出售最低价
|
// 出售最低价
|
||||||
|
Loading…
Reference in New Issue
Block a user