面包店
Você não pode selecionar mais de 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.

adm_role_perms.go 592 B

9 meses atrás
12345678910
  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. }