pg_access.go 492 字节
package models

// Access
type Access struct {
	tableName struct{} `pg:"access"`
	//	唯一标识
	Id int64
	//	父级id
	ParentId int64
	//	权限名称
	AccessName string
	//	权限编码
	AccessCode string
	//	权限类型 menu button data
	AccessType string
	//	排序
	Sort int
	//	请求对象 接口地址/对象
	Object string
	//	操作方法 httpMethod/read/write
	Action string
	//	所属功能模块
	Module string
	// icon
	Icon string
	// 状态 1-启用 0-禁用
	Status int
}