sys_do

package
v0.3.1 Latest Latest
Warning

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

Go to latest
Published: Feb 20, 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 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 SysAudit

type SysAudit struct {
	g.Meta        `orm:"table:sys_audit, do:true"`
	Id            interface{} //
	State         interface{} // 审核状态:-1不通过,0待审核,1通过
	Replay        interface{} // 不通过时回复的审核不通过原因
	UnionMainId   interface{} // 关联主体ID
	Category      interface{} // 业务类别
	AuditData     interface{} // 待审核的业务数据包
	ExpireAt      *gtime.Time // 服务时限
	AuditReplayAt *gtime.Time // 审核回复时间
	HistoryItems  interface{} // 历史申请记录
	CreatedAt     *gtime.Time //
}

SysAudit is the golang structure of table sys_audit 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 SysLicense

type SysLicense struct {
	g.Meta                    `orm:"table:sys_license, do:true"`
	Id                        interface{} //
	IdcardFrontPath           interface{} // 身份证头像面照片
	IdcardBackPath            interface{} // 身份证国徽面照片
	IdcardNo                  interface{} // 身份证号
	IdcardExpiredDate         *gtime.Time // 身份证有效期
	IdcardAddress             interface{} // 身份证户籍地址
	PersonContactName         interface{} // 负责人,必须是自然人
	PersonContactMobile       interface{} // 负责人,联系电话
	BusinessLicenseName       interface{} // 公司全称
	BusinessLicenseAddress    interface{} // 公司地址
	BusinessLicensePath       interface{} // 营业执照图片地址
	BusinessLicenseScope      interface{} // 经营范围
	BusinessLicenseRegCapital interface{} // 注册资本
	BusinessLicenseTermTime   interface{} // 营业期限
	BusinessLicenseOrgCode    interface{} // 组织机构代码
	BusinessLicenseCreditCode interface{} // 统一社会信用代码
	BusinessLicenseLegal      interface{} // 法人
	BusinessLicenseLegalPath  interface{} // 法人证照,如果法人不是自然人,则该项必填
	LatestAuditLogId          interface{} // 最新的审核记录ID
	State                     interface{} //
	AuthType                  interface{} //
	Remark                    interface{} //
	UpdatedAt                 *gtime.Time //
	CreatedAt                 *gtime.Time //
	DeletedAt                 *gtime.Time //
}

SysLicense is the golang structure of table sys_license 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
	MatchMode   interface{} // 匹配模式:ID:0,标识符:1
	IsShow      interface{} // 是否显示:0不显示 1显示
	Sort        interface{} // 排序
	CreatedAt   *gtime.Time //
	UpdatedAt   *gtime.Time //
}

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仅能修改名称,不允许删除和修改
	UnionMainId interface{} // 主体id
	CreatedAt   *gtime.Time //
	UpdatedAt   *gtime.Time //
}

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.

type SysUserDetail

type SysUserDetail struct {
	g.Meta        `orm:"table:sys_user_detail, do:true"`
	Id            interface{} // ID,保持与USERID一致
	Realname      interface{} // 姓名
	UnionMainName interface{} // 关联主体名称
	LastLoginIp   interface{} // 最后登录IP
	LastLoginArea interface{} // 最后登录地区
	LastLoginAt   *gtime.Time // 最后登录时间
}

SysUserDetail is the golang structure of table sys_user_detail for DAO operations like Where/Data.

Jump to

Keyboard shortcuts

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