面包店
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

14 řádky
788 B

  1. package model
  2. type PrivilegeCardGoodsCate struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Name string `json:"name" xorm:"not null default '' comment('商品分类名称') VARCHAR(255)"`
  5. IsShow int `json:"is_show" xorm:"not null default 1 comment('是否显示') TINYINT(1)"`
  6. Sort int `json:"sort" xorm:"default 0 comment('排序') INT(11)"`
  7. BrandId int `json:"brand_id" xorm:"not null default 0 comment('从属品牌ID') INT(11)"`
  8. Amount int `json:"amount" xorm:"default 0 comment('商品数量') INT(11)"`
  9. CreatedAt int `json:"created_at" xorm:"not null default 0 INT(11)"`
  10. UpdatedAt int `json:"updated_at" xorm:"not null default 0 INT(11)"`
  11. DeletedAt int `json:"deleted_at" xorm:"not null default 0 INT(11)"`
  12. }