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