internal

package
v0.2.64 Latest Latest
Warning

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

Go to latest
Published: Jan 9, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type SchemaMigrationsColumns added in v0.2.0

type SchemaMigrationsColumns struct {
	Version string //
	Dirty   string //
}

SchemaMigrationsColumns defines and stores column names for table schema_migrations.

type SchemaMigrationsDao added in v0.2.0

type SchemaMigrationsDao struct {
	// contains filtered or unexported fields
}

SchemaMigrationsDao is the data access object for table schema_migrations.

func NewSchemaMigrationsDao added in v0.2.0

func NewSchemaMigrationsDao() *SchemaMigrationsDao

NewSchemaMigrationsDao creates and returns a new DAO object for table data access.

func (*SchemaMigrationsDao) Columns added in v0.2.0

Columns returns all column names of current dao.

func (*SchemaMigrationsDao) Ctx added in v0.2.0

func (dao *SchemaMigrationsDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SchemaMigrationsDao) DB added in v0.2.0

func (dao *SchemaMigrationsDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SchemaMigrationsDao) Group added in v0.2.0

func (dao *SchemaMigrationsDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SchemaMigrationsDao) Table added in v0.2.0

func (dao *SchemaMigrationsDao) Table() string

Table returns the table name of current dao.

func (*SchemaMigrationsDao) Transaction added in v0.2.0

func (dao *SchemaMigrationsDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysAreaColumns

type SysAreaColumns struct {
	Id            string // ID
	AreaCode      string // 地区编码
	AreaName      string // 地区名称
	Level         string // 1:省份province,2:市city,3:区县district,4:街道street
	CityCode      string // 城市编码
	LatLongCenter string // 城市中心点(即经纬度)
	ParentId      string // 地区父节点
}

SysAreaColumns defines and stores column names for table sys_area.

type SysAreaDao

type SysAreaDao struct {
	// contains filtered or unexported fields
}

SysAreaDao is the data access object for table sys_area.

func NewSysAreaDao

func NewSysAreaDao() *SysAreaDao

NewSysAreaDao creates and returns a new DAO object for table data access.

func (*SysAreaDao) Columns

func (dao *SysAreaDao) Columns() SysAreaColumns

Columns returns all column names of current dao.

func (*SysAreaDao) Ctx

func (dao *SysAreaDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysAreaDao) DB

func (dao *SysAreaDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysAreaDao) Group

func (dao *SysAreaDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysAreaDao) Table

func (dao *SysAreaDao) Table() string

Table returns the table name of current dao.

func (*SysAreaDao) Transaction

func (dao *SysAreaDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysCasbinColumns

type SysCasbinColumns struct {
	Ptype string //
	V0    string //
	V1    string //
	V2    string //
	V3    string //
	V4    string //
	V5    string //
}

SysCasbinColumns defines and stores column names for table sys_casbin.

type SysCasbinDao

type SysCasbinDao struct {
	// contains filtered or unexported fields
}

SysCasbinDao is the data access object for table sys_casbin.

func NewSysCasbinDao

func NewSysCasbinDao() *SysCasbinDao

NewSysCasbinDao creates and returns a new DAO object for table data access.

func (*SysCasbinDao) Columns

func (dao *SysCasbinDao) Columns() SysCasbinColumns

Columns returns all column names of current dao.

func (*SysCasbinDao) Ctx

func (dao *SysCasbinDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysCasbinDao) DB

func (dao *SysCasbinDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysCasbinDao) Group

func (dao *SysCasbinDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysCasbinDao) Table

func (dao *SysCasbinDao) Table() string

Table returns the table name of current dao.

func (*SysCasbinDao) Transaction

func (dao *SysCasbinDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysConfigColumns

type SysConfigColumns struct {
	Name      string // 配置名称
	Value     string // 配置信息
	CreatedAt string //
	UpdatedAt string //
}

SysConfigColumns defines and stores column names for table sys_config.

type SysConfigDao

type SysConfigDao struct {
	// contains filtered or unexported fields
}

SysConfigDao is the data access object for table sys_config.

func NewSysConfigDao

func NewSysConfigDao() *SysConfigDao

NewSysConfigDao creates and returns a new DAO object for table data access.

func (*SysConfigDao) Columns

func (dao *SysConfigDao) Columns() SysConfigColumns

Columns returns all column names of current dao.

func (*SysConfigDao) Ctx

func (dao *SysConfigDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysConfigDao) DB

func (dao *SysConfigDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysConfigDao) Group

func (dao *SysConfigDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysConfigDao) Table

func (dao *SysConfigDao) Table() string

Table returns the table name of current dao.

func (*SysConfigDao) Transaction

func (dao *SysConfigDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysFileColumns

type SysFileColumns struct {
	Id          string // 自增ID
	Name        string // 文件名称
	Src         string // 存储路径
	Url         string // URL地址
	Ext         string // 扩展名
	Size        string // 文件大小
	Category    string // 文件分类
	UserId      string // 用户ID
	UnionMainId string // 关联主体ID
	CreatedAt   string //
	UpdatedAt   string //
}

SysFileColumns defines and stores column names for table sys_file.

type SysFileDao

type SysFileDao struct {
	// contains filtered or unexported fields
}

SysFileDao is the data access object for table sys_file.

func NewSysFileDao

func NewSysFileDao() *SysFileDao

NewSysFileDao creates and returns a new DAO object for table data access.

func (*SysFileDao) Columns

func (dao *SysFileDao) Columns() SysFileColumns

Columns returns all column names of current dao.

func (*SysFileDao) Ctx

func (dao *SysFileDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysFileDao) DB

func (dao *SysFileDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysFileDao) Group

func (dao *SysFileDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysFileDao) Table

func (dao *SysFileDao) Table() string

Table returns the table name of current dao.

func (*SysFileDao) Transaction

func (dao *SysFileDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysLogsColumns

type SysLogsColumns struct {
	Id        string // ID
	UserId    string // 用户UID
	Error     string // 错误信息
	Category  string // 分类
	Level     string // 等级
	Content   string // 日志内容
	Context   string // 上下文数据
	CreatedAt string //
	UpdatedAt string //
}

SysLogsColumns defines and stores column names for table sys_logs.

type SysLogsDao

type SysLogsDao struct {
	// contains filtered or unexported fields
}

SysLogsDao is the data access object for table sys_logs.

func NewSysLogsDao

func NewSysLogsDao() *SysLogsDao

NewSysLogsDao creates and returns a new DAO object for table data access.

func (*SysLogsDao) Columns

func (dao *SysLogsDao) Columns() SysLogsColumns

Columns returns all column names of current dao.

func (*SysLogsDao) Ctx

func (dao *SysLogsDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysLogsDao) DB

func (dao *SysLogsDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysLogsDao) Group

func (dao *SysLogsDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysLogsDao) Table

func (dao *SysLogsDao) Table() string

Table returns the table name of current dao.

func (*SysLogsDao) Transaction

func (dao *SysLogsDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysMenuColumns

type SysMenuColumns struct {
	Id          string // ID
	Path        string // 路径
	Name        string // 名称
	Redirect    string // 跳转
	Title       string // 标题
	Icon        string // 图标
	Component   string // 组件
	ParentId    string // 所属父级
	Sort        string // 排序
	State       string // 状态:0隐藏,1显示
	Description string // 描述
	CreatedAt   string //
	UpdatedAt   string //
}

SysMenuColumns defines and stores column names for table sys_menu.

type SysMenuDao

type SysMenuDao struct {
	// contains filtered or unexported fields
}

SysMenuDao is the data access object for table sys_menu.

func NewSysMenuDao

func NewSysMenuDao() *SysMenuDao

NewSysMenuDao creates and returns a new DAO object for table data access.

func (*SysMenuDao) Columns

func (dao *SysMenuDao) Columns() SysMenuColumns

Columns returns all column names of current dao.

func (*SysMenuDao) Ctx

func (dao *SysMenuDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysMenuDao) DB

func (dao *SysMenuDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysMenuDao) Group

func (dao *SysMenuDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysMenuDao) Table

func (dao *SysMenuDao) Table() string

Table returns the table name of current dao.

func (*SysMenuDao) Transaction

func (dao *SysMenuDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysOrganizationColumns

type SysOrganizationColumns struct {
	Id          string //
	Name        string // 名称
	ParentId    string // 父级ID
	CascadeDeep string // 级联深度
	Description string // 描述
}

SysOrganizationColumns defines and stores column names for table sys_organization.

type SysOrganizationDao

type SysOrganizationDao struct {
	// contains filtered or unexported fields
}

SysOrganizationDao is the data access object for table sys_organization.

func NewSysOrganizationDao

func NewSysOrganizationDao() *SysOrganizationDao

NewSysOrganizationDao creates and returns a new DAO object for table data access.

func (*SysOrganizationDao) Columns

Columns returns all column names of current dao.

func (*SysOrganizationDao) Ctx

func (dao *SysOrganizationDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysOrganizationDao) DB

func (dao *SysOrganizationDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysOrganizationDao) Group

func (dao *SysOrganizationDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysOrganizationDao) Table

func (dao *SysOrganizationDao) Table() string

Table returns the table name of current dao.

func (*SysOrganizationDao) Transaction

func (dao *SysOrganizationDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysPermissionColumns

type SysPermissionColumns struct {
	Id          string // ID
	ParentId    string // 父级ID
	Name        string // 名称
	Description string // 描述
	Identifier  string // 标识符
	Type        string // 类型:1api,2menu
	CreatedAt   string //
	UpdatedAt   string //
	IsShow      string // 是否显示:0不显示 1显示
	Sort        string // 排序字段
}

SysPermissionColumns defines and stores column names for table sys_permission.

type SysPermissionDao

type SysPermissionDao struct {
	// contains filtered or unexported fields
}

SysPermissionDao is the data access object for table sys_permission.

func NewSysPermissionDao

func NewSysPermissionDao() *SysPermissionDao

NewSysPermissionDao creates and returns a new DAO object for table data access.

func (*SysPermissionDao) Columns

func (dao *SysPermissionDao) Columns() SysPermissionColumns

Columns returns all column names of current dao.

func (*SysPermissionDao) Ctx

func (dao *SysPermissionDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysPermissionDao) DB

func (dao *SysPermissionDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysPermissionDao) Group

func (dao *SysPermissionDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysPermissionDao) Table

func (dao *SysPermissionDao) Table() string

Table returns the table name of current dao.

func (*SysPermissionDao) Transaction

func (dao *SysPermissionDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysRoleColumns

type SysRoleColumns struct {
	Id          string //
	Name        string // 名称
	Description string // 描述
	IsSystem    string // 是否默认角色,true仅能修改名称,不允许删除和修改
	UpdatedAt   string //
	CreatedAt   string //
	UnionMainId string // 主体id
}

SysRoleColumns defines and stores column names for table sys_role.

type SysRoleDao

type SysRoleDao struct {
	// contains filtered or unexported fields
}

SysRoleDao is the data access object for table sys_role.

func NewSysRoleDao

func NewSysRoleDao() *SysRoleDao

NewSysRoleDao creates and returns a new DAO object for table data access.

func (*SysRoleDao) Columns

func (dao *SysRoleDao) Columns() SysRoleColumns

Columns returns all column names of current dao.

func (*SysRoleDao) Ctx

func (dao *SysRoleDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysRoleDao) DB

func (dao *SysRoleDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysRoleDao) Group

func (dao *SysRoleDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysRoleDao) Table

func (dao *SysRoleDao) Table() string

Table returns the table name of current dao.

func (*SysRoleDao) Transaction

func (dao *SysRoleDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysSmsLogsColumns

type SysSmsLogsColumns struct {
	Id        string //
	Type      string // 短信平台:qyxs:企业信使
	Context   string // 短信内容
	Mobile    string // 手机号
	State     string // 发送状态
	Result    string // 短信接口返回内容
	UserId    string // 用户ID
	LicenseId string // 主体ID
	CreatedAt string //
	UpdatedAt string //
	DeletedAt string //
}

SysSmsLogsColumns defines and stores column names for table sys_sms_logs.

type SysSmsLogsDao

type SysSmsLogsDao struct {
	// contains filtered or unexported fields
}

SysSmsLogsDao is the data access object for table sys_sms_logs.

func NewSysSmsLogsDao

func NewSysSmsLogsDao() *SysSmsLogsDao

NewSysSmsLogsDao creates and returns a new DAO object for table data access.

func (*SysSmsLogsDao) Columns

func (dao *SysSmsLogsDao) Columns() SysSmsLogsColumns

Columns returns all column names of current dao.

func (*SysSmsLogsDao) Ctx

func (dao *SysSmsLogsDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysSmsLogsDao) DB

func (dao *SysSmsLogsDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysSmsLogsDao) Group

func (dao *SysSmsLogsDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysSmsLogsDao) Table

func (dao *SysSmsLogsDao) Table() string

Table returns the table name of current dao.

func (*SysSmsLogsDao) Transaction

func (dao *SysSmsLogsDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

type SysUserColumns

type SysUserColumns struct {
	Id        string //
	Username  string // 账号
	Password  string // 密码
	State     string // 状态:0未激活、1正常、-1封号、-2异常、-3已注销
	Type      string // 用户类型,0匿名,1用户,2微商,4商户、8广告主、16服务商、32运营中心
	Mobile    string // 手机号
	CreatedAt string //
	UpdatedAt string //
	DeletedAt string //
}

SysUserColumns defines and stores column names for table sys_user.

type SysUserDao

type SysUserDao struct {
	// contains filtered or unexported fields
}

SysUserDao is the data access object for table sys_user.

func NewSysUserDao

func NewSysUserDao() *SysUserDao

NewSysUserDao creates and returns a new DAO object for table data access.

func (*SysUserDao) Columns

func (dao *SysUserDao) Columns() SysUserColumns

Columns returns all column names of current dao.

func (*SysUserDao) Ctx

func (dao *SysUserDao) Ctx(ctx context.Context) *gdb.Model

Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.

func (*SysUserDao) DB

func (dao *SysUserDao) DB() gdb.DB

DB retrieves and returns the underlying raw database management object of current DAO.

func (*SysUserDao) Group

func (dao *SysUserDao) Group() string

Group returns the configuration group name of database of current dao.

func (*SysUserDao) Table

func (dao *SysUserDao) Table() string

Table returns the table name of current dao.

func (*SysUserDao) Transaction

func (dao *SysUserDao) Transaction(ctx context.Context, f func(ctx context.Context, tx *gdb.TX) error) (err error)

Transaction wraps the transaction logic using function f. It rollbacks the transaction and returns the error from function f if it returns non-nil error. It commits the transaction and returns nil if function f returns nil.

Note that, you should not Commit or Rollback the transaction in function f as it is automatically handled by this function.

Jump to

Keyboard shortcuts

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