Documentation ¶
Index ¶
- func DefaultMenu() []system.SysBaseMenu
- type AddMenuAuthorityInfo
- type BaseClaims
- type CasbinInReceive
- type CasbinInfo
- type ChangePasswordReq
- type ChangeUserInfo
- type CustomClaims
- type InitDB
- type Login
- type ProjectSearch
- type Register
- type RollBack
- type SearchApiParams
- type SetUserAuth
- type SetUserAuthorities
- type SetUserProjects
- type SysAuthorityBtnReq
- type SysAutoHistory
- type SysDictionaryDetailSearch
- type SysDictionarySearch
- type SysOperationRecordSearch
- type SysProjectUsers
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultMenu ¶
func DefaultMenu() []system.SysBaseMenu
Types ¶
type AddMenuAuthorityInfo ¶
type AddMenuAuthorityInfo struct { Menus []system.SysBaseMenu `json:"menus"` AuthorityId uint `json:"authorityId"` // 角色ID }
Add menu authority info structure
type BaseClaims ¶
type CasbinInReceive ¶
type CasbinInReceive struct { AuthorityId uint `json:"authorityId"` // 权限id CasbinInfos []CasbinInfo `json:"casbinInfos"` }
Casbin structure for input parameters
type ChangePasswordReq ¶
type ChangePasswordReq struct { ID uint `json:"-"` // 从 JWT 中提取 user id,避免越权 Password string `json:"password"` // 密码 NewPassword string `json:"newPassword"` // 新密码 }
Modify password structure
type ChangeUserInfo ¶
type ChangeUserInfo struct { ID uint `gorm:"primarykey"` // 主键ID NickName string `json:"nickName" gorm:"default:系统用户;comment:用户昵称"` // 用户昵称 Phone string `json:"phone" gorm:"comment:用户手机号"` // 用户手机号 AuthorityIds []uint `json:"authorityIds" gorm:"-"` // 角色ID Email string `json:"email" gorm:"comment:用户邮箱"` // 用户邮箱 HeaderImg string `json:"headerImg" gorm:"default:https://qmplusimg.henrongyi.top/gva_header.jpg;comment:用户头像"` // 用户头像 SideMode string `json:"sideMode" gorm:"comment:用户侧边主题"` // 用户侧边主题 Enable int `json:"enable" gorm:"comment:冻结用户"` //冻结用户 Authorities []model.SysAuthority `json:"-" gorm:"many2many:sys_user_authority;"` }
type CustomClaims ¶
type CustomClaims struct { BaseClaims BufferTime int64 jwt.StandardClaims }
Custom claims structure
type InitDB ¶
type InitDB struct { DBType string `json:"dbType"` // 数据库类型 Host string `json:"host"` // 服务器地址 Port string `json:"port"` // 数据库连接端口 UserName string `json:"userName" binding:"required"` // 数据库用户名 Password string `json:"password"` // 数据库密码 DBName string `json:"dbName" binding:"required"` // 数据库名 }
func (*InitDB) MysqlEmptyDsn ¶
MysqlEmptyDsn msyql 空数据库 建库链接 Author SliverHorn
func (*InitDB) PgsqlEmptyDsn ¶
PgsqlEmptyDsn pgsql 空数据库 建库链接 Author SliverHorn
func (*InitDB) ToMysqlConfig ¶
ToMysqlConfig 转换 config.Mysql Author [SliverHorn](https://github.com/SliverHorn)
func (*InitDB) ToPgsqlConfig ¶
ToPgsqlConfig 转换 config.Pgsql Author [SliverHorn](https://github.com/SliverHorn)
type Login ¶
type Login struct { Username string `json:"username"` // 用户名 Password string `json:"password"` // 密码 Captcha string `json:"captcha"` // 验证码 CaptchaId string `json:"captchaId"` // 验证码ID }
User login structure
type Register ¶
type Register struct { Username string `json:"userName"` Password string `json:"passWord"` NickName string `json:"nickName" gorm:"default:'QMPlusUser'"` HeaderImg string `json:"headerImg" gorm:"default:'https://qmplusimg.henrongyi.top/gva_header.jpg'"` AuthorityId uint `json:"authorityId" gorm:"default:888"` Enable int `json:"enable"` AuthorityIds []uint `json:"authorityIds"` ProjectIds []string `json:"projectIds"` }
User register structure
type RollBack ¶
type RollBack struct { ID int `json:"id" form:"id"` // 主键ID DeleteTable bool `json:"deleteTable" form:"deleteTable"` // 是否删除表 }
GetById Find by id structure
type SearchApiParams ¶
type SearchApiParams struct { system.SysApi request.PageInfo OrderKey string `json:"orderKey"` // 排序 Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true }
api分页条件查询及排序结构体
type SetUserAuth ¶
type SetUserAuth struct {
AuthorityId uint `json:"authorityId"` // 角色ID
}
Modify user's auth structure
type SetUserAuthorities ¶
Modify user's auth structure
type SetUserProjects ¶
type SysAuthorityBtnReq ¶
type SysAutoHistory ¶
type SysDictionaryDetailSearch ¶
type SysDictionaryDetailSearch struct { system.SysDictionaryDetail request.PageInfo }
type SysDictionarySearch ¶
type SysDictionarySearch struct { system.SysDictionary request.PageInfo }
type SysOperationRecordSearch ¶
type SysOperationRecordSearch struct { system.SysOperationRecord request.PageInfo }
type SysProjectUsers ¶
Click to show internal directories.
Click to hide internal directories.