Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SchemaMigrations ¶
type SchemaMigrations struct { g.Meta `orm:"table:schema_migrations, do:true"` Version interface{} // Dirty interface{} // }
SchemaMigrations is the golang structure of table schema_migrations for DAO operations like Where/Data.
type SysArea ¶
type SysArea struct { g.Meta `orm:"table:sys_area, do:true"` Id interface{} // ID AreaCode interface{} // 地区编码 AreaName interface{} // 地区名称 Level interface{} // 1:省份province,2:市city,3:区县district,4:街道street CityCode interface{} // 城市编码 LatLongCenter interface{} // 城市中心点(即经纬度) ParentId interface{} // 地区父节点 }
SysArea is the golang structure of table sys_area for DAO operations like Where/Data.
type SysCasbin ¶
type SysCasbin struct { g.Meta `orm:"table:sys_casbin, do:true"` Ptype interface{} // V0 interface{} // V1 interface{} // V2 interface{} // V3 interface{} // V4 interface{} // V5 interface{} // }
SysCasbin is the golang structure of table sys_casbin for DAO operations like Where/Data.
type SysConfig ¶
type SysConfig struct { g.Meta `orm:"table:sys_config, do:true"` Name interface{} // 配置名称 Value interface{} // 配置信息 CreatedAt *gtime.Time // UpdatedAt *gtime.Time // }
SysConfig is the golang structure of table sys_config 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地址 Ext interface{} // 扩展名 Size interface{} // 文件大小 Category interface{} // 文件分类 UserId interface{} // 用户ID UnionMainId interface{} // 关联主体ID CreatedAt *gtime.Time // UpdatedAt *gtime.Time // }
SysFile is the golang structure of table sys_file for DAO operations like Where/Data.
type SysLogs ¶
type SysLogs struct { g.Meta `orm:"table:sys_logs, do:true"` Id interface{} // ID UserId interface{} // 用户UID Error interface{} // 错误信息 Category interface{} // 分类 Level interface{} // 等级 Content interface{} // 日志内容 Context interface{} // 上下文数据 CreatedAt *gtime.Time // UpdatedAt *gtime.Time // }
SysLogs is the golang structure of table sys_logs for DAO operations like Where/Data.
type SysMenu ¶
type SysMenu struct { g.Meta `orm:"table:sys_menu, do:true"` Id interface{} // ID Path interface{} // 路径 Name interface{} // 名称 Redirect interface{} // 跳转 Title interface{} // 标题 Icon interface{} // 图标 Component interface{} // 组件 ParentId interface{} // 所属父级 Sort interface{} // 排序 State interface{} // 状态:0隐藏,1显示 Description interface{} // 描述 CreatedAt *gtime.Time // UpdatedAt *gtime.Time // }
SysMenu is the golang structure of table sys_menu for DAO operations like Where/Data.
type SysOrganization ¶
type SysOrganization struct { g.Meta `orm:"table:sys_organization, do:true"` Id interface{} // Name interface{} // 名称 ParentId interface{} // 父级ID CascadeDeep interface{} // 级联深度 Description interface{} // 描述 }
SysOrganization is the golang structure of table sys_organization for DAO operations like Where/Data.
type SysPermission ¶
type SysPermission struct { g.Meta `orm:"table:sys_permission, do:true"` Id interface{} // ID ParentId interface{} // 父级ID Name interface{} // 名称 Description interface{} // 描述 Identifier interface{} // 标识符 Type interface{} // 类型:1api,2menu CreatedAt *gtime.Time // UpdatedAt *gtime.Time // IsShow interface{} // 是否显示:0不显示 1显示 Sort interface{} // 排序字段 }
SysPermission is the golang structure of table sys_permission for DAO operations like Where/Data.
type SysRole ¶
type SysRole struct { g.Meta `orm:"table:sys_role, do:true"` Id interface{} // Name interface{} // 名称 Description interface{} // 描述 IsSystem interface{} // 是否默认角色,true仅能修改名称,不允许删除和修改 UpdatedAt *gtime.Time // CreatedAt *gtime.Time // UnionMainId interface{} // 主体id }
SysRole is the golang structure of table sys_role for DAO operations like Where/Data.
type SysSmsLogs ¶
type SysSmsLogs struct { g.Meta `orm:"table:sys_sms_logs, do:true"` Id interface{} // Type interface{} // 短信平台:qyxs:企业信使 Context interface{} // 短信内容 Mobile interface{} // 手机号 State interface{} // 发送状态 Result interface{} // 短信接口返回内容 UserId interface{} // 用户ID LicenseId interface{} // 主体ID CreatedAt *gtime.Time // UpdatedAt *gtime.Time // DeletedAt *gtime.Time // }
SysSmsLogs is the golang structure of table sys_sms_logs for DAO operations like Where/Data.
type SysUser ¶
type SysUser struct { g.Meta `orm:"table:sys_user, do:true"` Id interface{} // Username interface{} // 账号 Password interface{} // 密码 State interface{} // 状态:0未激活、1正常、-1封号、-2异常、-3已注销 Type interface{} // 用户类型,0匿名,1用户,2微商,4商户、8广告主、16服务商、32运营中心 Mobile interface{} // 手机号 CreatedAt *gtime.Time // UpdatedAt *gtime.Time // DeletedAt *gtime.Time // }
SysUser is the golang structure of table sys_user for DAO operations like Where/Data.