git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package dto
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
type LoginReq struct {
|
|
g.Meta `path:"/login" method:"post" tags:"用户" summary:"登录"`
|
|
Account string `v:"required" json:"account"`
|
|
Password string `v:"required" json:"password"`
|
|
}
|
|
|
|
type LoginRes struct {
|
|
Token string `json:"token"`
|
|
User *LoginUser `json:"user"`
|
|
}
|
|
|
|
type LoginUser struct {
|
|
Id int64 `json:"id"`
|
|
Role string `json:"role"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type ChangePasswordReq struct {
|
|
g.Meta `path:"/change-password" method:"post" tags:"用户" summary:"修改密码"`
|
|
OldPassword string `v:"required" json:"old_password"`
|
|
NewPassword string `v:"required|min-length:6" json:"new_password"`
|
|
}
|
|
|
|
type RegisterReq struct {
|
|
g.Meta `path:"/register" method:"post" tags:"用户" summary:"注册"`
|
|
Account string `v:"required" json:"account"`
|
|
Password string `v:"required|min-length:6" json:"password"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type ProfileReq struct {
|
|
g.Meta `path:"/profile" method:"get" tags:"用户" summary:"我的资料"`
|
|
}
|
|
|
|
type ProfileRes struct {
|
|
Id int64 `json:"id"`
|
|
Role string `json:"role"`
|
|
Name string `json:"name"`
|
|
Username string `json:"username"`
|
|
Phone string `json:"phone"`
|
|
}
|