面包店
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.

privilege_card_goods_cate.go 788 B

9 months ago
12345678910111213
  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. }