Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CasbinRule ¶
type CasbinRule struct { g.Meta `orm:"table:casbin_rule, do:true"` Ptype interface{} // V0 interface{} // V1 interface{} // V2 interface{} // V3 interface{} // V4 interface{} // V5 interface{} // }
CasbinRule is the golang structure of table casbin_rule for DAO operations like Where/Data.
type SysAuthRule ¶
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 // 修改日期 }
SysAuthRule is the golang structure of table sys_auth_rule for DAO operations like Where/Data.
type SysConfig ¶
type SysConfig struct { g.Meta `orm:"table:sys_config, do:true"` ConfigId interface{} // 参数主键 ConfigName interface{} // 参数名称 ConfigKey interface{} // 参数键名 ConfigValue interface{} // 参数键值 ConfigType interface{} // 系统内置(Y是 N否) CreateBy interface{} // 创建者 UpdateBy interface{} // 更新者 Remark interface{} // 备注 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 修改时间 }
SysConfig is the golang structure of table sys_config for DAO operations like Where/Data.
type SysDept ¶
type SysDept struct { g.Meta `orm:"table:sys_dept, do:true"` DeptId interface{} // 部门id ParentId interface{} // 父部门id Ancestors interface{} // 祖级列表 DeptName interface{} // 部门名称 OrderNum interface{} // 显示顺序 Leader interface{} // 负责人 Phone interface{} // 联系电话 Email interface{} // 邮箱 Status interface{} // 部门状态(0正常 1停用) CreatedBy interface{} // 创建人 UpdatedBy interface{} // 修改人 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 修改时间 DeletedAt *gtime.Time // 删除时间 }
SysDept is the golang structure of table sys_dept for DAO operations like Where/Data.
type SysDictData ¶
type SysDictData struct { g.Meta `orm:"table:sys_dict_data, do:true"` DictCode interface{} // 字典编码 DictSort interface{} // 字典排序 DictLabel interface{} // 字典标签 DictValue interface{} // 字典键值 DictType interface{} // 字典类型 CssClass interface{} // 样式属性(其他样式扩展) ListClass interface{} // 表格回显样式 IsDefault interface{} // 是否默认(1是 0否) Status interface{} // 状态(0正常 1停用) CreateBy interface{} // 创建者 UpdateBy interface{} // 更新者 Remark interface{} // 备注 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 修改时间 }
SysDictData is the golang structure of table sys_dict_data for DAO operations like Where/Data.
type SysDictType ¶
type SysDictType struct { g.Meta `orm:"table:sys_dict_type, do:true"` DictId interface{} // 字典主键 DictName interface{} // 字典名称 DictType interface{} // 字典类型 Status interface{} // 状态(0正常 1停用) CreateBy interface{} // 创建者 UpdateBy interface{} // 更新者 Remark interface{} // 备注 CreatedAt *gtime.Time // 创建日期 UpdatedAt *gtime.Time // 修改日期 }
SysDictType is the golang structure of table sys_dict_type for DAO operations like Where/Data.
type SysGenTable ¶
type SysGenTable struct { g.Meta `orm:"table:sys_gen_table, do:true"` TableId interface{} // 编号 TableName interface{} // 表名称 TableComment interface{} // 表描述 ClassName interface{} // 实体类名称 TplCategory interface{} // 使用的模板(crud单表操作 tree树表操作) PackageName interface{} // 生成包路径 ModuleName interface{} // 生成模块名 BusinessName interface{} // 生成业务名 FunctionName interface{} // 生成功能名 FunctionAuthor interface{} // 生成功能作者 Options interface{} // 其它生成选项 CreateTime *gtime.Time // 创建时间 UpdateTime *gtime.Time // 更新时间 Remark interface{} // 备注 Overwrite interface{} // 是否覆盖原有文件 SortColumn interface{} // 排序字段名 SortType interface{} // 排序方式 (asc顺序 desc倒序) ShowDetail interface{} // 是否有查看详情功能 }
SysGenTable is the golang structure of table sys_gen_table for DAO operations like Where/Data.
type SysGenTableColumn ¶
type SysGenTableColumn struct { g.Meta `orm:"table:sys_gen_table_column, do:true"` ColumnId interface{} // 编号 TableId interface{} // 归属表编号 ColumnName interface{} // 列名称 ColumnComment interface{} // 列描述 ColumnType interface{} // 列类型 GoType interface{} // Go类型 GoField interface{} // Go字段名 VueType interface{} // Vue类型 HtmlField interface{} // html字段名 IsPk interface{} // 是否主键(1是) IsIncrement interface{} // 是否自增(1是) IsRequired interface{} // 是否必填(1是) IsInsert interface{} // 是否为插入字段(1是) IsEdit interface{} // 是否编辑字段(1是) IsList interface{} // 是否列表字段(1是) IsDetail interface{} // 是否详情字段 IsQuery interface{} // 是否查询字段(1是) SortOrderEdit interface{} // 插入编辑显示顺序 SortOrderList interface{} // 列表显示顺序 SortOrderDetail interface{} // 详情显示顺序 SortOrderQuery interface{} // 查询显示顺序 QueryType interface{} // 查询方式(等于、不等于、大于、小于、范围) HtmlType interface{} // 显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件) DictType interface{} // 字典类型 LinkTableName interface{} // 关联表名 LinkTableClass interface{} // 关联表类名 LinkTableModuleName interface{} // 关联表模块名 LinkTableBusinessName interface{} // 关联表业务名 LinkTablePackage interface{} // 关联表包名 LinkLabelId interface{} // 关联表键名 LinkLabelName interface{} // 关联表字段值 ColSpan interface{} // 详情页占列数 RowSpan interface{} // 详情页占行数 IsRowStart interface{} // 详情页为行首 MinWidth interface{} // 表格最小宽度 IsFixed interface{} // 是否表格列左固定 IsOverflowTooltip interface{} // 是否过长自动隐藏 IsCascade interface{} // 是否级联查询 ParentColumnName interface{} // 上级字段名 CascadeColumnName interface{} // 级联查询字段 }
SysGenTableColumn is the golang structure of table sys_gen_table_column for DAO operations like Where/Data.
type SysJob ¶
type SysJob struct { g.Meta `orm:"table: sys_job, do:true"` JobId interface{} // 任务ID JobName interface{} // 任务名称 JobParams interface{} // 参数 JobGroup interface{} // 任务组名 InvokeTarget interface{} // 调用目标字符串 CronExpression interface{} // cron执行表达式 MisfirePolicy interface{} // 计划执行策略(1多次执行 2执行一次) Concurrent interface{} // 是否并发执行(0允许 1禁止) Status interface{} // 状态(0正常 1暂停) CreateBy interface{} // 创建者 UpdateBy interface{} // 更新者 Remark interface{} // 备注信息 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 更新时间 DeletedAt *gtime.Time // 删除时间 }
SysJob is the golang structure for table sys_job.
type SysLoginLog ¶
type SysLoginLog struct { g.Meta `orm:"table:sys_login_log, do:true"` InfoId interface{} // 访问ID LoginName interface{} // 登录账号 Ipaddr interface{} // 登录IP地址 LoginLocation interface{} // 登录地点 Browser interface{} // 浏览器类型 Os interface{} // 操作系统 Status interface{} // 登录状态(0成功 1失败) Msg interface{} // 提示消息 LoginTime *gtime.Time // 登录时间 Module interface{} // 登录模块 }
SysLoginLog is the golang structure of table sys_login_log for DAO operations like Where/Data.
type SysOperLog ¶
type SysOperLog struct { g.Meta `orm:"table:sys_oper_log, do:true"` OperId interface{} // 日志主键 Title interface{} // 模块标题 BusinessType interface{} // 业务类型(0其它 1新增 2修改 3删除) Method interface{} // 方法名称 RequestMethod interface{} // 请求方式 OperatorType interface{} // 操作类别(0其它 1后台用户 2手机端用户) OperName interface{} // 操作人员 DeptName interface{} // 部门名称 OperUrl interface{} // 请求URL OperIp interface{} // 主机地址 OperLocation interface{} // 操作地点 OperParam interface{} // 请求参数 JsonResult interface{} // 返回参数 Status interface{} // 操作状态(0正常 1异常) ErrorMsg interface{} // 错误消息 OperTime *gtime.Time // 操作时间 }
SysOperLog is the golang structure of table sys_oper_log for DAO operations like Where/Data.
type SysPost ¶
type SysPost struct { g.Meta `orm:"table:sys_post, do:true"` PostId interface{} // 岗位ID PostCode interface{} // 岗位编码 PostName interface{} // 岗位名称 PostSort interface{} // 显示顺序 Status interface{} // 状态(0正常 1停用) Remark interface{} // 备注 CreatedBy interface{} // 创建人 UpdatedBy interface{} // 修改人 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 修改时间 DeletedAt *gtime.Time // 删除时间 }
SysPost is the golang structure of table sys_post for DAO operations like Where/Data.
type SysRole ¶
type SysRole struct { g.Meta `orm:"table:sys_role, do:true"` Id interface{} // Status interface{} // 状态;0:禁用;1:正常 ListOrder interface{} // 排序 Name interface{} // 角色名称 Remark interface{} // 备注 DataScope interface{} // 数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限) CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 更新时间 }
SysRole is the golang structure of table sys_role for DAO operations like Where/Data.
type SysRoleDept ¶
type SysRoleDept struct { g.Meta `orm:"table:sys_role_dept, do:true"` RoleId interface{} // 角色ID DeptId interface{} // 部门ID }
SysRoleDept is the golang structure of table sys_role_dept for DAO operations like Where/Data.
type SysUser ¶
type SysUser struct { g.Meta `orm:"table:sys_user, do:true"` Id interface{} // UserName interface{} // 用户名 Mobile interface{} // 中国手机不带国家代码,国际手机号格式为:国家代码-手机号 UserNickname interface{} // 用户昵称 Birthday interface{} // 生日 UserPassword interface{} // 登录密码;cmf_password加密 UserSalt interface{} // 加密盐 UserStatus interface{} // 用户状态;0:禁用,1:正常,2:未验证 UserEmail interface{} // 用户登录邮箱 Sex interface{} // 性别;0:保密,1:男,2:女 Avatar interface{} // 用户头像 DeptId interface{} // 部门id Remark interface{} // 备注 IsAdmin interface{} // 是否后台管理员 1 是 0 否 Address interface{} // 联系地址 Describe interface{} // 描述信息 LastLoginIp interface{} // 最后登录ip LastLoginTime *gtime.Time // 最后登录时间 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 更新时间 DeletedAt *gtime.Time // 删除时间 }
SysUser is the golang structure of table sys_user for DAO operations like Where/Data.
type SysUserOnline ¶
type SysUserOnline struct { g.Meta `orm:"table:sys_user_online, do:true"` Id interface{} // Uuid interface{} // 用户标识 Token interface{} // 用户token CreateTime *gtime.Time // 登录时间 UserName interface{} // 用户名 Ip interface{} // 登录ip Explorer interface{} // 浏览器 Os interface{} // 操作系统 }
SysUserOnline is the golang structure of table sys_user_online for DAO operations like Where/Data.
type SysUserPost ¶
type SysUserPost struct { g.Meta `orm:"table:sys_user_post, do:true"` UserId interface{} // 用户ID PostId interface{} // 岗位ID }
SysUserPost is the golang structure of table sys_user_post for DAO operations like Where/Data.