Documentation ¶
Overview ¶
Package user ...
Package user ... generated version: unknown
Package user ...
Package user ... generated version: unknown
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IPostUpdateUserNameController ¶
type IPostUpdateUserNameController interface {
PostUpdateUserName(c echo.Context, req *PostUpdateUserNameRequest) (res *PostUpdateUserNameResponse, err error)
}
IPostUpdateUserNameController ...
type IPostUpdateUserPasswordController ¶
type IPostUpdateUserPasswordController interface {
PostUpdateUserPassword(c echo.Context, req *PostUpdateUserPasswordRequest) (res *PostUpdateUserPasswordResponse, err error)
}
IPostUpdateUserPasswordController ...
type PostUpdateUserNameController ¶
type PostUpdateUserNameController struct {
*props.ControllerProps
}
PostUpdateUserNameController ...
func NewPostUpdateUserNameController ¶
func NewPostUpdateUserNameController(props *props.ControllerProps) *PostUpdateUserNameController
NewPostUpdateUserNameController ...
func (*PostUpdateUserNameController) PostUpdateUserName ¶
func (p *PostUpdateUserNameController) PostUpdateUserName( c echo.Context, req *PostUpdateUserNameRequest, ) (res *PostUpdateUserNameResponse, err error)
PostUpdateUserName ... @Summary WIP @Description WIP @Accept json @Produce json @Param Name body string WIP:${isRequire} WIP:${description} @Success 200 {object} PostUpdateUserNameResponse @Failure 400 {object} WIP @Router /service/user/update_user_name [POST]
type PostUpdateUserNameRequest ¶
type PostUpdateUserNameRequest struct {
Name string
}
PostUpdateUserNameRequest ...
type PostUpdateUserNameResponse ¶
PostUpdateUserNameResponse ...
type PostUpdateUserPasswordController ¶
type PostUpdateUserPasswordController struct {
*props.ControllerProps
}
PostUpdateUserPasswordController ...
func NewPostUpdateUserPasswordController ¶
func NewPostUpdateUserPasswordController(props *props.ControllerProps) *PostUpdateUserPasswordController
NewPostUpdateUserPasswordController ...
func (*PostUpdateUserPasswordController) PostUpdateUserPassword ¶
func (p *PostUpdateUserPasswordController) PostUpdateUserPassword( c echo.Context, req *PostUpdateUserPasswordRequest, ) (res *PostUpdateUserPasswordResponse, err error)
PostUpdateUserPassword ... @Summary WIP @Description WIP @Accept json @Produce json @Param Password body string WIP:${isRequire} WIP:${description} @Param PasswordConfirm body string WIP:${isRequire} WIP:${description} @Success 200 {object} PostUpdateUserPasswordResponse @Failure 400 {object} WIP @Router /service/user/update_user_password [POST]
type PostUpdateUserPasswordRequest ¶
PostUpdateUserPasswordRequest ...
type PostUpdateUserPasswordResponse ¶
PostUpdateUserPasswordResponse ...
type Routes ¶
type Routes struct {
// contains filtered or unexported fields
}
Routes ...
func NewRoutes ¶
func NewRoutes(p *props.ControllerProps, router *echo.Group, opts ...io.Writer) *Routes
NewRoutes ...
func (*Routes) PostUpdateUserName ¶
func (r *Routes) PostUpdateUserName(p *props.ControllerProps) echo.HandlerFunc
PostUpdateUserName ...
func (*Routes) PostUpdateUserPassword ¶
func (r *Routes) PostUpdateUserPassword(p *props.ControllerProps) echo.HandlerFunc
PostUpdateUserPassword ...