mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-11 11:43:46 +08:00
30 lines
1.0 KiB
Go
Executable File
30 lines
1.0 KiB
Go
Executable File
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/encoding/gjson"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// AdminRole is the golang structure of table hg_admin_role for DAO operations like Where/Data.
|
|
type AdminRole struct {
|
|
g.Meta `orm:"table:hg_admin_role, do:true"`
|
|
Id any // 角色ID
|
|
Name any // 角色名称
|
|
Key any // 角色权限字符串
|
|
DataScope any // 数据范围
|
|
CustomDept *gjson.Json // 自定义部门权限
|
|
Pid any // 上级角色ID
|
|
Level any // 关系树等级
|
|
Tree any // 关系树
|
|
Remark any // 备注
|
|
Sort any // 排序
|
|
Status any // 角色状态
|
|
CreatedAt *gtime.Time // 创建时间
|
|
UpdatedAt *gtime.Time // 更新时间
|
|
}
|