1
This commit is contained in:
37
internal/app/system/model/do/sys_auth_rule.go
Normal file
37
internal/app/system/model/do/sys_auth_rule.go
Normal file
@@ -0,0 +1,37 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysAuthRule is the golang structure of table sys_auth_rule for DAO operations like Where/Data.
|
||||
type SysAuthRule struct {
|
||||
g.Meta `orm:"table:sys_auth_rule, do:true"`
|
||||
Id interface{} //
|
||||
Pid interface{} // 父ID
|
||||
Name interface{} // 规则名称
|
||||
Title interface{} // 规则名称
|
||||
Icon interface{} // 图标
|
||||
Condition interface{} // 条件
|
||||
Remark interface{} // 备注
|
||||
MenuType interface{} // 类型 0目录 1菜单 2按钮
|
||||
Weigh interface{} // 权重
|
||||
IsHide interface{} // 显示状态
|
||||
Path interface{} // 路由地址
|
||||
Component interface{} // 组件路径
|
||||
IsLink interface{} // 是否外链 1是 0否
|
||||
ModuleType interface{} // 所属模块
|
||||
ModelId interface{} // 模型ID
|
||||
IsIframe interface{} // 是否内嵌iframe
|
||||
IsCached interface{} // 是否缓存
|
||||
Redirect interface{} // 路由重定向地址
|
||||
IsAffix interface{} // 是否固定
|
||||
LinkUrl interface{} // 链接地址
|
||||
CreatedAt *gtime.Time // 创建日期
|
||||
UpdatedAt *gtime.Time // 修改日期
|
||||
}
|
||||
Reference in New Issue
Block a user