Documentation
¶
Index ¶
- Variables
- func ExecTrans(ctx context.Context, transModel model.ITrans, fn TransFunc) error
- func ExecTransWithLock(ctx context.Context, transModel model.ITrans, fn TransFunc) error
- func LoadCasbinPolicy(ctx context.Context, e *casbin.SyncedEnforcer)
- func NewNoTrans(ctx context.Context) context.Context
- type Demo
- func (a *Demo) Create(ctx context.Context, item schema.Demo) (*schema.IDResult, error)
- func (a *Demo) Delete(ctx context.Context, id string) error
- func (a *Demo) Get(ctx context.Context, id string, opts ...schema.DemoQueryOptions) (*schema.Demo, error)
- func (a *Demo) Query(ctx context.Context, params schema.DemoQueryParam, ...) (*schema.DemoQueryResult, error)
- func (a *Demo) Update(ctx context.Context, id string, item schema.Demo) error
- func (a *Demo) UpdateStatus(ctx context.Context, id string, status int) error
- type Login
- func (l *Login) DestroyToken(ctx context.Context, tokenString string) error
- func (l *Login) GenerateToken(ctx context.Context, userID string) (*schema.LoginTokenInfo, error)
- func (l *Login) GetCaptchaId(ctx context.Context, length int) (*schema.LoginCaptcha, error)
- func (l *Login) GetCaptchaPic(ctx context.Context, w http.ResponseWriter, captchaID string, ...) error
- func (l *Login) GetLoginInfo(ctx context.Context, userID string) (*schema.UserLoginInfo, error)
- func (l *Login) QueryUserMenuTree(ctx context.Context, userID string) (schema.MenuTrees, error)
- func (l *Login) UpdatePassword(ctx context.Context, userID string, params schema.UpdatePasswordParam) error
- func (l *Login) Verify(ctx context.Context, username, password string) (*schema.User, error)
- type Menu
- func (a *Menu) Create(ctx context.Context, item schema.Menu) (*schema.IDResult, error)
- func (a *Menu) Delete(ctx context.Context, id string) error
- func (a *Menu) Get(ctx context.Context, id string, opts ...schema.MenuQueryOptions) (*schema.Menu, error)
- func (a *Menu) InitData(ctx context.Context, dataFile string) error
- func (a *Menu) Query(ctx context.Context, params schema.MenuQueryParam, ...) (*schema.MenuQueryResult, error)
- func (a *Menu) QueryActions(ctx context.Context, id string) (schema.MenuActions, error)
- func (a *Menu) Update(ctx context.Context, id string, item schema.Menu) error
- func (a *Menu) UpdateStatus(ctx context.Context, id string, status int) error
- type Role
- func (a *Role) Create(ctx context.Context, item schema.Role) (*schema.IDResult, error)
- func (a *Role) Delete(ctx context.Context, id string) error
- func (a *Role) Get(ctx context.Context, id string, opts ...schema.RoleQueryOptions) (*schema.Role, error)
- func (a *Role) Query(ctx context.Context, params schema.RoleQueryParam, ...) (*schema.RoleQueryResult, error)
- func (a *Role) QueryRoleMenus(ctx context.Context, roleID string) (schema.RoleMenus, error)
- func (a *Role) Update(ctx context.Context, id string, item schema.Role) error
- func (a *Role) UpdateStatus(ctx context.Context, id string, status int) error
- type TransFunc
- type User
- func (a *User) Create(ctx context.Context, item schema.User) (*schema.IDResult, error)
- func (a *User) Delete(ctx context.Context, id string) error
- func (a *User) Get(ctx context.Context, id string, opts ...schema.UserQueryOptions) (*schema.User, error)
- func (a *User) Query(ctx context.Context, params schema.UserQueryParam, ...) (*schema.UserQueryResult, error)
- func (a *User) QueryShow(ctx context.Context, params schema.UserQueryParam, ...) (*schema.UserShowQueryResult, error)
- func (a *User) Update(ctx context.Context, id string, item schema.User) error
- func (a *User) UpdateStatus(ctx context.Context, id string, status int) error
Constants ¶
This section is empty.
Variables ¶
BizImplSet 注入
View Source
var DemoSet = wire.NewSet(wire.Struct(new(Demo), "*"), wire.Bind(new(biz.IDemo), new(*Demo)))
DemoSet 注入Demo
View Source
var LoginSet = wire.NewSet(wire.Struct(new(Login), "*"), wire.Bind(new(biz.ILogin), new(*Login)))
LoginSet 注入Login
View Source
var MenuSet = wire.NewSet(wire.Struct(new(Menu), "*"), wire.Bind(new(biz.IMenu), new(*Menu)))
MenuSet 注入Menu
View Source
var RoleSet = wire.NewSet(wire.Struct(new(Role), "*"), wire.Bind(new(biz.IRole), new(*Role)))
RoleSet 注入Role
View Source
var UserSet = wire.NewSet(wire.Struct(new(User), "*"), wire.Bind(new(biz.IUser), new(*User)))
UserSet 注入User
Functions ¶
func ExecTransWithLock ¶
ExecTransWithLock 执行事务(加锁)
func LoadCasbinPolicy ¶
LoadCasbinPolicy 异步加载casbin权限策略
Types ¶
type Demo ¶
Demo 示例程序
func (*Demo) Get ¶
func (a *Demo) Get(ctx context.Context, id string, opts ...schema.DemoQueryOptions) (*schema.Demo, error)
Get 查询指定数据
func (*Demo) Query ¶
func (a *Demo) Query(ctx context.Context, params schema.DemoQueryParam, opts ...schema.DemoQueryOptions) (*schema.DemoQueryResult, error)
Query 查询数据
type Login ¶
type Login struct { Auth auth.Auther UserModel model.IUser UserRoleModel model.IUserRole RoleModel model.IRole RoleMenuModel model.IRoleMenu MenuModel model.IMenu MenuActionModel model.IMenuAction }
Login 登录管理
func (*Login) DestroyToken ¶
DestroyToken 销毁令牌
func (*Login) GenerateToken ¶
GenerateToken 生成令牌
func (*Login) GetCaptchaId ¶
GetCaptchaId 获取图形验证码ID
func (*Login) GetCaptchaPic ¶
func (l *Login) GetCaptchaPic(ctx context.Context, w http.ResponseWriter, captchaID string, width, height int) error
GetCaptchaPic 获取图形验证码Pic
func (*Login) GetLoginInfo ¶
GetLoginInfo 获取当前用户登录信息
func (*Login) QueryUserMenuTree ¶
QueryUserMenuTree 查询当前用户的权限菜单树
func (*Login) UpdatePassword ¶
func (l *Login) UpdatePassword(ctx context.Context, userID string, params schema.UpdatePasswordParam) error
UpdatePassword 更新当前用户登录密码
type Menu ¶
type Menu struct { TransModel model.ITrans MenuModel model.IMenu MenuActionModel model.IMenuAction MenuActionResourceModel model.IMenuActionResource }
Menu 菜单管理
func (*Menu) Get ¶
func (a *Menu) Get(ctx context.Context, id string, opts ...schema.MenuQueryOptions) (*schema.Menu, error)
Get 查询指定数据
func (*Menu) Query ¶
func (a *Menu) Query(ctx context.Context, params schema.MenuQueryParam, opts ...schema.MenuQueryOptions) (*schema.MenuQueryResult, error)
Query 查询数据
func (*Menu) QueryActions ¶
QueryActions 查询动作数据
type Role ¶
type Role struct { Enforcer *casbin.SyncedEnforcer TransModel model.ITrans RoleModel model.IRole RoleMenuModel model.IRoleMenu UserModel model.IUser }
Role 角色管理
func (*Role) Get ¶
func (a *Role) Get(ctx context.Context, id string, opts ...schema.RoleQueryOptions) (*schema.Role, error)
Get 查询指定数据
func (*Role) Query ¶
func (a *Role) Query(ctx context.Context, params schema.RoleQueryParam, opts ...schema.RoleQueryOptions) (*schema.RoleQueryResult, error)
Query 查询数据
func (*Role) QueryRoleMenus ¶
QueryRoleMenus 查询角色菜单列表
type User ¶
type User struct { Enforcer *casbin.SyncedEnforcer TransModel model.ITrans UserModel model.IUser UserRoleModel model.IUserRole RoleModel model.IRole }
User 用户管理
func (*User) Get ¶
func (a *User) Get(ctx context.Context, id string, opts ...schema.UserQueryOptions) (*schema.User, error)
Get 查询指定数据
func (*User) Query ¶
func (a *User) Query(ctx context.Context, params schema.UserQueryParam, opts ...schema.UserQueryOptions) (*schema.UserQueryResult, error)
Query 查询数据
func (*User) QueryShow ¶
func (a *User) QueryShow(ctx context.Context, params schema.UserQueryParam, opts ...schema.UserQueryOptions) (*schema.UserShowQueryResult, error)
QueryShow 查询显示项数据
Click to show internal directories.
Click to hide internal directories.