This commit is contained in:
孟帅
2022-02-25 17:11:17 +08:00
parent 9bd05abb2c
commit 8f3d679a57
897 changed files with 95731 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminDept is the golang structure of table hg_admin_dept for DAO operations like Where/Data.
type AdminDept struct {
g.Meta `orm:"table:hg_admin_dept, dto:true"`
Id interface{} // 部门id
Pid interface{} // 父部门id
Ancestors interface{} // 祖级列表
Name interface{} // 部门名称
Code interface{} // 部门编码
Type interface{} // 部门类型
Leader interface{} // 负责人
Phone interface{} // 联系电话
Email interface{} // 邮箱
Sort interface{} // 排序
Status interface{} // 部门状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,44 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminMember is the golang structure of table hg_admin_member for DAO operations like Where/Data.
type AdminMember struct {
g.Meta `orm:"table:hg_admin_member, dto:true"`
Id interface{} //
DeptId interface{} // 部门ID
Username interface{} // 帐号
PasswordHash interface{} // 密码
Salt interface{} // 密码盐
AuthKey interface{} // 授权令牌
PasswordResetToken interface{} // 密码重置令牌
Type interface{} // 1:普通管理员;10超级管理员
Realname interface{} // 真实姓名
Avatar interface{} // 头像
Sex interface{} // 性别[0:未知;1:男;2:女]
Qq interface{} // qq
Email interface{} // 邮箱
Birthday *gtime.Time // 生日
ProvinceId interface{} // 省
CityId interface{} // 城市
AreaId interface{} // 地区
Address interface{} // 默认地址
Mobile interface{} // 手机号码
HomePhone interface{} // 家庭号码
DingtalkRobotToken interface{} // 钉钉机器人token
VisitCount interface{} // 访问次数
LastTime interface{} // 最后一次登录时间
LastIp interface{} // 最后一次登录ip
Role interface{} // 权限
Remark interface{} // 备注
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}

View File

@@ -0,0 +1,16 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
)
// AdminMemberPost is the golang structure of table hg_admin_member_post for DAO operations like Where/Data.
type AdminMemberPost struct {
g.Meta `orm:"table:hg_admin_member_post, dto:true"`
MemberId interface{} // 用户ID
PostId interface{} // 岗位ID
}

View File

@@ -0,0 +1,16 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
)
// AdminMemberRole is the golang structure of table hg_admin_member_role for DAO operations like Where/Data.
type AdminMemberRole struct {
g.Meta `orm:"table:hg_admin_member_role, dto:true"`
MemberId interface{} // 用户ID
RoleId interface{} // 角色ID
}

View File

@@ -0,0 +1,35 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminMenu is the golang structure of table hg_admin_menu for DAO operations like Where/Data.
type AdminMenu struct {
g.Meta `orm:"table:hg_admin_menu, dto:true"`
Id interface{} // 菜单ID
Pid interface{} // 父菜单ID
Name interface{} // 菜单名称
Code interface{} // 菜单编码
Icon interface{} // 菜单图标
Type interface{} // 菜单类型M目录 C菜单 F按钮
Perms interface{} // 权限标识
Path interface{} // 路由地址
Component interface{} // 组件路径
Query interface{} // 路由参数
IsFrame interface{} // 是否内嵌
IsCache interface{} // 是否不缓存
IsVisible interface{} // 是否隐藏
Remark interface{} // 备注
Level interface{} // 级别
Tree interface{} // 树
Sort interface{} // 排序
Status interface{} // 菜单状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,34 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminMenuOld is the golang structure of table hg_admin_menu_old for DAO operations like Where/Data.
type AdminMenuOld struct {
g.Meta `orm:"table:hg_admin_menu_old, dto:true"`
Id interface{} // 菜单ID
Pid interface{} // 父菜单ID
Name interface{} // 菜单名称
Icon interface{} // 菜单图标
Type interface{} // 菜单类型M目录 C菜单 F按钮
Perms interface{} // 权限标识
Path interface{} // 路由地址
Component interface{} // 组件路径
Query interface{} // 路由参数
IsFrame interface{} // 是否为外链0是 1否
IsCache interface{} // 是否缓存0缓存 1不缓存
IsVisible interface{} // 菜单状态0显示 1隐藏
Remark interface{} // 备注
Level interface{} // 级别
Tree interface{} // 树
Sort interface{} // 排序
Status interface{} // 菜单状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,23 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminNotice is the golang structure of table hg_admin_notice for DAO operations like Where/Data.
type AdminNotice struct {
g.Meta `orm:"table:hg_admin_notice, dto:true"`
Id interface{} // 公告ID
Title interface{} // 公告标题
Type interface{} // 公告类型1通知 2公告
Content interface{} // 公告内容
Remark interface{} // 备注
Status interface{} // 公告状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,23 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminPost is the golang structure of table hg_admin_post for DAO operations like Where/Data.
type AdminPost struct {
g.Meta `orm:"table:hg_admin_post, dto:true"`
Id interface{} // 岗位ID
Code interface{} // 岗位编码
Name interface{} // 岗位名称
Remark interface{} // 备注
Sort interface{} // 显示顺序
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,26 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"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, dto:true"`
Id interface{} // 角色ID
Name interface{} // 角色名称
Key interface{} // 角色权限字符串
DataScope interface{} // 数据范围1全部数据权限 2自定数据权限 3本部门数据权限 4本部门及以下数据权限
MenuCheckStrictly interface{} // 菜单树选择项是否关联显示
DeptCheckStrictly interface{} // 部门树选择项是否关联显示
Remark interface{} // 备注
Sort interface{} // 排序
Status interface{} // 角色状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,16 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
)
// AdminRoleDept is the golang structure of table hg_admin_role_dept for DAO operations like Where/Data.
type AdminRoleDept struct {
g.Meta `orm:"table:hg_admin_role_dept, dto:true"`
RoleId interface{} // 角色ID
DeptId interface{} // 部门ID
}

View File

@@ -0,0 +1,16 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
)
// AdminRoleMenu is the golang structure of table hg_admin_role_menu for DAO operations like Where/Data.
type AdminRoleMenu struct {
g.Meta `orm:"table:hg_admin_role_menu, dto:true"`
RoleId interface{} // 角色ID
MenuId interface{} // 菜单ID
}

View File

@@ -0,0 +1,24 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SysConfig is the golang structure of table hg_sys_config for DAO operations like Where/Data.
type SysConfig struct {
g.Meta `orm:"table:hg_sys_config, dto:true"`
Id interface{} // 配置ID
Name interface{} // 参数名称
Key interface{} // 参数键名
Value interface{} // 参数键值
IsDefault interface{} // 是否默认
Status interface{} // 状态
Remark interface{} // 备注
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,26 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SysDictData is the golang structure of table hg_sys_dict_data for DAO operations like Where/Data.
type SysDictData struct {
g.Meta `orm:"table:hg_sys_dict_data, dto:true"`
Id interface{} // 字典编码
Label interface{} // 字典标签
Value interface{} // 字典键值
Type interface{} // 字典类型
ListClass interface{} // 表格回显样式
IsDefault interface{} // 是否默认
Sort interface{} // 字典排序
Remark interface{} // 备注
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,23 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SysDictType is the golang structure of table hg_sys_dict_type for DAO operations like Where/Data.
type SysDictType struct {
g.Meta `orm:"table:hg_sys_dict_type, dto:true"`
Id interface{} // 字典主键
Name interface{} // 字典名称
Type interface{} // 字典类型
Sort interface{} // 排序
Remark interface{} // 备注
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}

View File

@@ -0,0 +1,38 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SysLog is the golang structure of table hg_sys_log for DAO operations like Where/Data.
type SysLog struct {
g.Meta `orm:"table:hg_sys_log, dto:true"`
Id interface{} //
AppId interface{} // 应用id
MerchantId interface{} // 商户id
MemberId interface{} // 用户id
Method interface{} // 提交类型
Module interface{} // 模块
Url interface{} // 提交url
GetData interface{} // get数据
PostData interface{} // post数据
HeaderData interface{} // header数据
Ip interface{} // ip地址
ProvinceId interface{} // 省编码
CityId interface{} // 市编码
ErrorCode interface{} // 报错code
ErrorMsg interface{} // 报错信息
ErrorData interface{} // 报错日志
ReqId interface{} // 对外id
Timestamp interface{} // 响应时间
UserAgent interface{} // UA信息
TakeUpTime interface{} // 请求耗时
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}

View File

@@ -0,0 +1,26 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
)
// SysProvinces is the golang structure of table hg_sys_provinces for DAO operations like Where/Data.
type SysProvinces struct {
g.Meta `orm:"table:hg_sys_provinces, dto:true"`
Id interface{} // ID
Title interface{} // 栏目名
Pid interface{} // 父栏目
ShortTitle interface{} // 缩写
Areacode interface{} // 区域编码
Zipcode interface{} // 邮政编码
Pinyin interface{} // 拼音
Lng interface{} // 经度
Lat interface{} // 纬度
Level interface{} // 级别
Tree interface{} //
Sort interface{} // 排序
}