Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateReq ¶
type CreateReq struct {
g.Meta `path:"/create" method:"post" auth:"true" role:"admin" tags:"admin" summary:"新建管理员接口"`
model.SysAdminCreateReq
}
新建管理员接口请求参数
type DeleteReq ¶
type DeleteReq struct {
g.Meta `path:"/delete" method:"get" auth:"true" role:"admin" tags:"admin" summary:"删除管理员接口"`
Id string `json:"id"`
}
删除管理员接口请求参数
type DetailReq ¶
type DetailReq struct {
g.Meta `path:"/detail" method:"get" auth:"true" role:"admin" tags:"admin" summary:"管理员详情接口"`
Id string `json:"id"`
}
管理员详情接口请求参数
type DetailRes ¶
type DetailRes struct {
g.Meta `mime:"application/json" example:"json"`
*model.SysAdminDetailRes
}
管理员详情接口响应参数
type PageReq ¶
type PageReq struct {
g.Meta `path:"/page" method:"get" auth:"true" role:"admin" tags:"admin" summary:"管理员分页列表接口"`
model.SysAdminPageReq
}
管理员分页列表接口请求参数
type PageRes ¶
type PageRes struct {
g.Meta `mime:"application/json" example:"json"`
*model.SysAdminPageRes
}
管理员分页列表接口响应参数
Click to show internal directories.
Click to hide internal directories.