初始
This commit is contained in:
161
api/v1/system/sys_user.go
Normal file
161
api/v1/system/sys_user.go
Normal file
@ -0,0 +1,161 @@
|
||||
package system
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
commonApi "github.com/tiger1103/gfast/v3/api/v1/common"
|
||||
"github.com/tiger1103/gfast/v3/internal/app/system/model"
|
||||
"github.com/tiger1103/gfast/v3/internal/app/system/model/entity"
|
||||
wxModel "github.com/tiger1103/gfast/v3/internal/app/wxApplet/model/do"
|
||||
)
|
||||
|
||||
type UserMenusReq struct {
|
||||
g.Meta `path:"/user/getUserMenus" tags:"用户管理" method:"get" summary:"获取用户菜单"`
|
||||
commonApi.Author
|
||||
}
|
||||
|
||||
type UserMenusRes struct {
|
||||
g.Meta `mime:"application/json"`
|
||||
MenuList []*model.UserMenus `json:"menuList"`
|
||||
Permissions []string `json:"permissions"`
|
||||
}
|
||||
|
||||
// UserSearchReq 用户搜索请求参数
|
||||
type UserSearchReq struct {
|
||||
g.Meta `path:"/user/list" tags:"用户管理" method:"get" summary:"用户列表"`
|
||||
DeptId string `p:"deptId"` //部门id
|
||||
RoleId uint `p:"roleId"`
|
||||
Mobile string `p:"mobile"`
|
||||
Status string `p:"status"`
|
||||
KeyWords string `p:"keyWords"`
|
||||
commonApi.PageReq
|
||||
commonApi.Author
|
||||
}
|
||||
|
||||
type UserSearchRes struct {
|
||||
g.Meta `mime:"application/json"`
|
||||
UserList []*model.SysUserRoleDeptRes `json:"userList"`
|
||||
commonApi.ListRes
|
||||
}
|
||||
|
||||
type UserGetParamsReq struct {
|
||||
g.Meta `path:"/user/params" tags:"用户管理" method:"get" summary:"用户维护参数获取"`
|
||||
}
|
||||
|
||||
type UserGetParamsRes struct {
|
||||
g.Meta `mime:"application/json"`
|
||||
RoleList []*entity.SysRole `json:"roleList"`
|
||||
Posts []*entity.SysPost `json:"posts"`
|
||||
}
|
||||
|
||||
// SetUserReq 添加修改用户公用请求字段
|
||||
type SetUserReq struct {
|
||||
DeptId uint64 `p:"deptId" v:"required#用户部门不能为空"` //所属部门
|
||||
Email string `p:"email" v:"email#邮箱格式错误"` //邮箱
|
||||
NickName string `p:"nickName" v:"required#用户昵称不能为空"`
|
||||
Mobile string `p:"mobile" v:"required|phone#手机号不能为空|手机号格式错误"`
|
||||
PostIds []int64 `p:"postIds"`
|
||||
Remark string `p:"remark"`
|
||||
RoleIds []int64 `p:"roleIds"`
|
||||
Sex int `p:"sex"`
|
||||
Status uint `p:"status"`
|
||||
IsAdmin int `p:"isAdmin"` // 是否后台管理员 1 是 0 否
|
||||
IsData int `p:"isData"` // 项目备案 1查看所有书 2仅自己
|
||||
}
|
||||
|
||||
// UserAddReq 添加用户参数
|
||||
type UserAddReq struct {
|
||||
g.Meta `path:"/user/add" tags:"用户管理" method:"post" summary:"添加用户"`
|
||||
*SetUserReq
|
||||
UserName string `p:"userName" v:"required#用户账号不能为空"`
|
||||
Password string `p:"password" v:"required|password#密码不能为空|密码以字母开头,只能包含字母、数字和下划线,长度在6~18之间"`
|
||||
Project []int64 `p:"project" v:"required#项目id不能为空"`
|
||||
UserSalt string
|
||||
Power []PowerEntity `p:"power"`
|
||||
}
|
||||
|
||||
type PowerEntity struct {
|
||||
SysUserId int64 `json:"sysUserId" dc:"用户id"`
|
||||
ProjectId int64 `json:"projectId" dc:"项目id"`
|
||||
Type string `json:"type" dc:"1模板 2资料 3回收站"`
|
||||
V1 string `json:"v1" dc:"新建文件夹(1有权 2无权)"`
|
||||
V2 string `json:"v2" dc:"本地导入(1有权 2无权)"`
|
||||
V3 string `json:"v3" dc:"重命名(1有权 2无权)"`
|
||||
V4 string `json:"v4" dc:"下载(1有权 2无权)"`
|
||||
V5 string `json:"v5" dc:"预览(1有权 2无权)"`
|
||||
V6 string `json:"v6" dc:"保存(1有权 2无权)"`
|
||||
V7 string `json:"v7" dc:"删除(1有权 2无权)"`
|
||||
V8 string `json:"v8" dc:"在线模板复制(1有权 2无权)"`
|
||||
V9 string `json:"v9" dc:"在线资料移动(1有权 2无权)"`
|
||||
V10 string `json:"v10" dc:"模板恢复/删除(1有权 2无权)"`
|
||||
V11 string `json:"v11" dc:"资料恢复/删除(1有权 2无权)"`
|
||||
V12 string `json:"v12" dc:"全项目文件预览/下载(1有权 2无权)"`
|
||||
}
|
||||
|
||||
type UserAddRes struct {
|
||||
}
|
||||
|
||||
// UserEditReq 修改用户参数
|
||||
type UserEditReq struct {
|
||||
g.Meta `path:"/user/edit" tags:"用户管理" method:"put" summary:"修改用户"`
|
||||
*SetUserReq
|
||||
UserId int64 `p:"userId" v:"required#用户id不能为空"`
|
||||
Project []int64 `p:"project" v:"required#项目id不能为空"`
|
||||
Power []PowerEntity `p:"power"`
|
||||
}
|
||||
|
||||
type UserEditRes struct {
|
||||
}
|
||||
|
||||
type UserGetEditReq struct {
|
||||
g.Meta `path:"/user/getEdit" tags:"用户管理" method:"get" summary:"获取用户信息"`
|
||||
Id uint64 `p:"id"`
|
||||
}
|
||||
|
||||
type UserGetEditRes struct {
|
||||
g.Meta `mime:"application/json"`
|
||||
User *entity.SysUser `json:"user"`
|
||||
CheckedRoleIds []uint `json:"checkedRoleIds"`
|
||||
CheckedPosts []int64 `json:"checkedPosts"`
|
||||
Project []int64 `json:"project"`
|
||||
WxList []wxModel.SysUserProjectRelevancy `json:"wxList"`
|
||||
PowerList []PowerEntity `json:"powerList"`
|
||||
}
|
||||
|
||||
// UserResetPwdReq 重置用户密码状态参数
|
||||
type UserResetPwdReq struct {
|
||||
g.Meta `path:"/user/resetPwd" tags:"用户管理" method:"put" summary:"重置用户密码"`
|
||||
Id uint64 `p:"userId" v:"required#用户id不能为空"`
|
||||
Password string `p:"password" v:"required|password#密码不能为空|密码以字母开头,只能包含字母、数字和下划线,长度在6~18之间"`
|
||||
}
|
||||
|
||||
type UserResetPwdRes struct {
|
||||
}
|
||||
|
||||
// UserStatusReq 设置用户状态参数
|
||||
type UserStatusReq struct {
|
||||
g.Meta `path:"/user/setStatus" tags:"用户管理" method:"put" summary:"设置用户状态"`
|
||||
Id uint64 `p:"userId" v:"required#用户id不能为空"`
|
||||
UserStatus uint `p:"status" v:"required#用户状态不能为空"`
|
||||
}
|
||||
|
||||
type UserStatusRes struct {
|
||||
}
|
||||
|
||||
type UserDeleteReq struct {
|
||||
g.Meta `path:"/user/delete" tags:"用户管理" method:"delete" summary:"删除用户"`
|
||||
Ids []int `p:"ids" v:"required#ids不能为空"`
|
||||
}
|
||||
|
||||
type UserDeleteRes struct {
|
||||
}
|
||||
|
||||
type UserGetByIdsReq struct {
|
||||
g.Meta `path:"/user/getUsers" tags:"用户管理" method:"get" summary:"同时获取多个用户"`
|
||||
commonApi.Author
|
||||
Ids []int `p:"ids" v:"required#ids不能为空"`
|
||||
}
|
||||
|
||||
type UserGetByIdsRes struct {
|
||||
g.Meta `mime:"application/json"`
|
||||
List []*model.SysUserSimpleRes `json:"list"`
|
||||
}
|
Reference in New Issue
Block a user