面包店
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

11 lignes
592 B

  1. package model
  2. type AdmRolePerms struct {
  3. Id int `json:"id" xorm:"not null pk autoincr comment('ID') INT(10)"`
  4. Pid int `json:"pid" xorm:"not null comment('父ID') INT(10)"`
  5. Perm string `json:"perm" xorm:"not null default '' comment('权限匹配名') VARCHAR(128)"`
  6. PermName string `json:"perm_name" xorm:"not null default '' comment('后台显示名称') VARCHAR(64)"`
  7. Sort int `json:"sort" xorm:"not null default 0 comment('显示排序,越大越前') INT(11)"`
  8. State int `json:"state" xorm:"not null default 1 comment('是否开启') TINYINT(1)"`
  9. }