面包店
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

15 linhas
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. }