package models type TBasePurviewRole struct { Id string `xorm:"not null pk comment('主键') CHAR(36)"` PurviewId string `xorm:"not null default '''' comment('权限ID') index CHAR(36)"` RoleId string `xorm:"not null default '''' comment('角色ID') index CHAR(36)"` BUse int32 `xorm:"not null default 1 comment('是否启用 0:未启用 1:启用') TINYINT(1)"` }