1
This commit is contained in:
20
internal/app/system/model/do/area_dict.go
Normal file
20
internal/app/system/model/do/area_dict.go
Normal file
@@ -0,0 +1,20 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// AreaDict is the golang structure of table tenant for DAO operations like Where/Data.
|
||||
type AreaDict struct {
|
||||
g.Meta `orm:"table:area_dict, do:true"`
|
||||
Id interface{} //
|
||||
CityName interface{} // 城市名称
|
||||
ParentId interface{} // 父级id
|
||||
ShortName interface{} // 城市缩写名称
|
||||
Depth interface{} // 城市层级
|
||||
MergerName interface{} // 城市组合名称
|
||||
}
|
||||
27
internal/app/system/model/do/module_tenant.go
Normal file
27
internal/app/system/model/do/module_tenant.go
Normal file
@@ -0,0 +1,27 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// ModuleTenant is the golang structure of table ModuleTenant for DAO operations like Where/Data.
|
||||
type ModuleTenant struct {
|
||||
g.Meta `orm:"table:module_tenant, do:true"`
|
||||
Id interface{} //
|
||||
CreateBy interface{} // 创建者
|
||||
UpdateBy interface{} // 更新者
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
ModuleKey interface{} //模块Key
|
||||
TenantId interface{} //租户ID
|
||||
ExpireAt *gtime.Time //到期时间
|
||||
AssetId interface{} //资产ID
|
||||
AssetSkuId interface{} //资产SKU ID
|
||||
TenantModuleType interface{} //租户模块类型
|
||||
CertificationStatus interface{} //状态
|
||||
}
|
||||
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 // 修改日期
|
||||
}
|
||||
30
internal/app/system/model/do/sys_dept.go
Normal file
30
internal/app/system/model/do/sys_dept.go
Normal file
@@ -0,0 +1,30 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// SysDept is the golang structure of table sys_dept for DAO operations like Where/Data.
|
||||
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 // 删除时间
|
||||
TenantId interface{} // 租户id
|
||||
}
|
||||
25
internal/app/system/model/do/sys_login_log.go
Normal file
25
internal/app/system/model/do/sys_login_log.go
Normal file
@@ -0,0 +1,25 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-08 11:31:48
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysLoginLog is the golang structure of table sys_login_log for DAO operations like Where/Data.
|
||||
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{} // 登录模块
|
||||
}
|
||||
29
internal/app/system/model/do/sys_oper_log.go
Normal file
29
internal/app/system/model/do/sys_oper_log.go
Normal file
@@ -0,0 +1,29 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// SysOperLog is the golang structure of table sys_oper_log for DAO operations like Where/Data.
|
||||
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{} // 请求参数
|
||||
ErrorMsg interface{} // 错误消息
|
||||
OperTime *gtime.Time // 操作时间
|
||||
}
|
||||
26
internal/app/system/model/do/sys_post.go
Normal file
26
internal/app/system/model/do/sys_post.go
Normal file
@@ -0,0 +1,26 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-04-07 23:26:21
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysPost is the golang structure of table sys_post for DAO operations like Where/Data.
|
||||
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 // 删除时间
|
||||
}
|
||||
24
internal/app/system/model/do/sys_role.go
Normal file
24
internal/app/system/model/do/sys_role.go
Normal file
@@ -0,0 +1,24 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// SysRole is the golang structure of table sys_role for DAO operations like Where/Data.
|
||||
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 // 更新时间
|
||||
TenantId interface{} // 租户id
|
||||
}
|
||||
16
internal/app/system/model/do/sys_role_dept.go
Normal file
16
internal/app/system/model/do/sys_role_dept.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// SysRoleDept is the golang structure of table sys_role_dept for DAO operations like Where/Data.
|
||||
type SysRoleDept struct {
|
||||
g.Meta `orm:"table:sys_role_dept, do:true"`
|
||||
RoleId interface{} // 角色ID
|
||||
DeptId interface{} // 部门ID
|
||||
}
|
||||
37
internal/app/system/model/do/sys_user.go
Normal file
37
internal/app/system/model/do/sys_user.go
Normal file
@@ -0,0 +1,37 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysUser is the golang structure of table sys_user for DAO operations like Where/Data.
|
||||
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 // 删除时间
|
||||
TenantId interface{} //租户id
|
||||
}
|
||||
23
internal/app/system/model/do/sys_user_online.go
Normal file
23
internal/app/system/model/do/sys_user_online.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// SysUserOnline is the golang structure of table sys_user_online for DAO operations like Where/Data.
|
||||
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{} // 操作系统
|
||||
}
|
||||
16
internal/app/system/model/do/sys_user_post.go
Normal file
16
internal/app/system/model/do/sys_user_post.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// SysUserPost is the golang structure of table sys_user_post for DAO operations like Where/Data.
|
||||
type SysUserPost struct {
|
||||
g.Meta `orm:"table:sys_user_post, do:true"`
|
||||
UserId interface{} // 用户ID
|
||||
PostId interface{} // 岗位ID
|
||||
}
|
||||
26
internal/app/system/model/do/tenant.go
Normal file
26
internal/app/system/model/do/tenant.go
Normal file
@@ -0,0 +1,26 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// Tenant is the golang structure of table tenant for DAO operations like Where/Data.
|
||||
type Tenant struct {
|
||||
g.Meta `orm:"table:tenant, do:true"`
|
||||
Id interface{} //
|
||||
CreateBy interface{} // 创建者
|
||||
UpdateBy interface{} // 更新者
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
TenantName interface{} // 租户名称
|
||||
TenantType interface{} // 租户类型
|
||||
CityCode interface{} // 城市编码
|
||||
BusinessLicense interface{} // 营业执照
|
||||
TenantSource interface{} // 租户来源
|
||||
AdminBy interface{} // 管理者
|
||||
}
|
||||
Reference in New Issue
Block a user