package models
// RoleAccess
type RoleAccess struct {
tableName struct{} `pg:"role_access"`
// 唯一标识
Id int64
// 角色id
RoleId int64
// 权限编号
AccessId int64
// 请求对象 接口地址/对象
Object string
// 操作方法 httpMethod/read/write
Action string
// 可选对象
Option string
}