do

package
v0.0.0-...-f0066fb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 7, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

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否)
	Remark      interface{} // 备注
	CreatedAt   *gtime.Time // 创建时间
	UpdatedAt   *gtime.Time // 更新时间
	DeletedAt   *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
	DeptName  interface{} // 部门名称
	OrderNum  interface{} // 显示顺序
	Leader    interface{} // 负责人
	Phone     interface{} // 手机号码
	Email     interface{} // 邮箱
	Status    interface{} // 部门状态(0正常 1停用)
	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{} // 是否默认(0是 1否)
	Status    interface{} // 状态(0正常 1停用)
	Remark    interface{} // 备注
	CreatedAt *gtime.Time // 创建日期
	UpdatedAt *gtime.Time // 修改日期
	DeletedAt *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停用)
	Remark    interface{} // 备注
	CreatedAt *gtime.Time // 创建日期
	UpdatedAt *gtime.Time // 修改日期
	DeletedAt *gtime.Time // 删除日期
}

SysDictType is the golang structure of table sys_dict_type for DAO operations like Where/Data.

type SysFile

type SysFile struct {
	g.Meta    `orm:"table:sys_file, do:true"`
	Id        interface{} // 自增ID
	Name      interface{} // 文件名称
	Src       interface{} // 本地文件存储路径
	Url       interface{} // URL地址,可能为空
	FileType  interface{} // 文件类型
	UserId    interface{} // 操作用户
	CreatedAt *gtime.Time // 创建时间
}

SysFile is the golang structure of table sys_file for DAO operations like Where/Data.

type SysJob

type SysJob struct {
	g.Meta         `orm:"table:sys_job, do:true"`
	JobId          interface{} // 任务ID
	JobName        interface{} // 任务名称
	JobGroup       interface{} // 任务组名
	InvokeTarget   interface{} // 调用目标字符串
	JobParams      interface{} // 参数
	CronExpression interface{} // cron执行表达式
	MisfirePolicy  interface{} // 计划执行错误策略(1立即执行 2执行一次 3放弃执行)
	Status         interface{} // 状态(0正常 1暂停)
	Remark         interface{} // 备注信息
	CreatedAt      *gtime.Time // 创建时间
	UpdatedAt      *gtime.Time // 更新时间
	DeletedAt      *gtime.Time // 删除时间
}

SysJob is the golang structure of table sys_job for DAO operations like Where/Data.

type SysJobLog

type SysJobLog struct {
	g.Meta        `orm:"table:sys_job_log, do:true"`
	JobLogId      interface{} // 任务日志ID
	JobName       interface{} // 任务名称
	JobGroup      interface{} // 任务组名
	InvokeTarget  interface{} // 调用目标字符串
	JobParams     interface{} // 参数
	JobMessage    interface{} // 日志信息
	Status        interface{} // 执行状态(0正常 1失败)
	ExceptionInfo interface{} // 异常信息
	CreateTime    *gtime.Time // 创建时间
}

SysJobLog is the golang structure of table sys_job_log for DAO operations like Where/Data.

type SysLoginLog

type SysLoginLog struct {
	g.Meta        `orm:"table:sys_login_log, do:true"`
	InfoId        interface{} // 访问ID
	UserName      interface{} // 登录账号
	Ipaddr        interface{} // 登录IP地址
	LoginLocation interface{} // 登录地点
	Browser       interface{} // 浏览器类型
	Os            interface{} // 操作系统
	Status        interface{} // 登录状态(0成功 1失败)
	Msg           interface{} // 提示消息
	CreatedAt     *gtime.Time // 登录时间
}

SysLoginLog is the golang structure of table sys_login_log for DAO operations like Where/Data.

type SysMenu

type SysMenu struct {
	g.Meta    `orm:"table:sys_menu, do:true"`
	MenuId    interface{} // 菜单ID
	MenuName  interface{} // 菜单名称
	ParentId  interface{} // 父菜单ID
	Sort      interface{} // 排序标记
	Path      interface{} // 路由地址
	Component interface{} // 组件路径
	IsFrame   interface{} // 是否为外链(0是 1否)
	IsCache   interface{} // 是否缓存(0缓存 1不缓存)
	Query     interface{} // 路由参数
	MenuType  interface{} // 菜单类型(M目录 C菜单 F按钮)
	Visible   interface{} // 显示状态(0显示 1隐藏)
	Status    interface{} // 菜单状态(0正常 1停用)
	Perms     interface{} // 权限标识
	IsAuth    interface{} // 是否验证(0是 1否)
	IsLog     interface{} // 是否记录操作日志(0是 1否)
	Icon      interface{} // 菜单图标
	CreatedAt *gtime.Time // 创建时间
	UpdatedAt *gtime.Time // 更新时间
	DeletedAt *gtime.Time // 删除时间
}

SysMenu is the golang structure of table sys_menu 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修改 4查询)
	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{} // 错误消息
	CreatedAt     *gtime.Time // 操作时间
}

SysOperLog is the golang structure of table sys_oper_log for DAO operations like Where/Data.

type SysRole

type SysRole struct {
	g.Meta    `orm:"table:sys_role, do:true"`
	RoleId    interface{} // 角色ID
	RoleName  interface{} // 角色名称
	RoleSort  interface{} // 显示顺序
	Status    interface{} // 角色状态(0正常 1停用)
	Remark    interface{} // 备注
	CreatedAt *gtime.Time // 创建时间
	UpdatedAt *gtime.Time // 更新时间
	DeletedAt *gtime.Time // 删除时间
}

SysRole is the golang structure of table sys_role for DAO operations like Where/Data.

type SysRoleMenu

type SysRoleMenu struct {
	g.Meta `orm:"table:sys_role_menu, do:true"`
	RoleId interface{} // 角色ID
	MenuId interface{} // 菜单ID
}

SysRoleMenu is the golang structure of table sys_role_menu for DAO operations like Where/Data.

type SysUser

type SysUser struct {
	g.Meta    `orm:"table:sys_user, do:true"`
	UserId    interface{} // 用户ID
	UserName  interface{} // 用户账号
	NickName  interface{} // 用户昵称
	Password  interface{} // 登录密码
	Mobile    interface{} // 手机号码
	Avatar    interface{} // 用户头像地址
	Status    interface{} // 用户状态(0正常 1停用)
	DeptId    interface{} // 部门id
	Remark    interface{} // 备注
	LoginIp   interface{} // 最后登录IP
	LoginDate *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{} // 用户ID
	Token         interface{} // 用户token
	UserId        interface{} // 用户id
	UserName      interface{} // 用户名
	Os            interface{} // 操作系统
	Ipaddr        interface{} // 登录IP地址
	LoginLocation interface{} // 登录地点
	Browser       interface{} // 浏览器类型
	CreatedAt     *gtime.Time // 登录时间
}

SysUserOnline is the golang structure of table sys_user_online for DAO operations like Where/Data.

type SysUserRole

type SysUserRole struct {
	g.Meta `orm:"table:sys_user_role, do:true"`
	UserId interface{} // 用户ID
	RoleId interface{} // 角色ID
}

SysUserRole is the golang structure of table sys_user_role for DAO operations like Where/Data.

type ToolsGenTable

type ToolsGenTable struct {
	g.Meta         `orm:"table:tools_gen_table, do:true"`
	TableId        interface{} // 编号
	TableName      interface{} // 表名称
	TableComment   interface{} // 表描述
	TplCategory    interface{} // 使用的模板(crud单表操作 tree树表操作)
	ObjectName     interface{} // 数据对象名称
	ApiFile        interface{} // api文件夹
	ControllerFile interface{} // controller文件夹
	ServerFile     interface{} // server文件夹
	FunctionName   interface{} // 生成功能描述
	FunctionAuthor interface{} // 生成功能作者
	Options        interface{} // 其它生成选项
	Remark         interface{} // 备注
	CreatedAt      *gtime.Time // 创建时间
	UpdatedAt      *gtime.Time // 更新时间
	DeletedAt      *gtime.Time // 删除时间
}

ToolsGenTable is the golang structure of table tools_gen_table for DAO operations like Where/Data.

type ToolsGenTableColumn

type ToolsGenTableColumn struct {
	g.Meta           `orm:"table:tools_gen_table_column, do:true"`
	ColumnId         interface{} // 编号
	TableId          interface{} // 归属表编号
	ColumnName       interface{} // 列名称
	ColumnComment    interface{} // 列描述
	ColumnType       interface{} // 列类型
	GoType           interface{} // Go类型
	GoField          interface{} // Go字段名
	HtmlField        interface{} // html字段名
	IsPk             interface{} // 是否主键(1是)
	IsIncrement      interface{} // 是否自增(1是)
	IsRequired       interface{} // 是否必填(1是)
	IsInsert         interface{} // 是否为插入字段(1是)
	IsEdit           interface{} // 是否编辑字段(1是)
	IsList           interface{} // 是否列表字段(1是)
	IsQuery          interface{} // 是否查询字段(1是)
	QueryType        interface{} // 查询方式(等于、不等于、大于、小于、范围)
	HtmlType         interface{} // 显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)
	DictType         interface{} // 字典类型
	Sort             interface{} // 排序
	LinkTableName    interface{} // 关联表名
	LinkTableClass   interface{} // 关联表类名
	LinkTablePackage interface{} // 关联表包名
	LinkLabelId      interface{} // 关联表键名
	LinkLabelName    interface{} // 关联表字段值
}

ToolsGenTableColumn is the golang structure of table tools_gen_table_column for DAO operations like Where/Data.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL