面包店
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

15 wiersze
949 B

  1. package model
  2. type MomentsCate struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Pid int `json:"pid" xorm:"not null default 0 comment('上级,0表示一级分类') INT(11)"`
  5. Name string `json:"name" xorm:"not null default '' comment('分类名称') VARCHAR(255)"`
  6. IsShow int `json:"is_show" xorm:"not null default 1 comment('是否显示') TINYINT(1)"`
  7. TypeId int `json:"type_id" xorm:"not null default 0 comment('类型') TINYINT(10)"`
  8. Data string `json:"data" xorm:"not null default '' comment('保存不同类型定义的设置数据') VARCHAR(255)"`
  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. Child *[]MomentsCate `json:"child"`
  13. }