mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-08 02:10:24 +08:00
21 lines
687 B
Go
21 lines
687 B
Go
package form
|
|
|
|
type AccountCreateForm struct {
|
|
Id uint64 `json:"id"`
|
|
Name string `json:"name" binding:"required,max=16" msg:"required=姓名不能为空,max=姓名最大长度不能超过16位"`
|
|
Username string `json:"username" binding:"pattern=account_username"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type AccountUpdateForm struct {
|
|
Name string `json:"name" binding:"max=16"` // 姓名
|
|
Username string `json:"username" binding:"omitempty,pattern=account_username"`
|
|
Password *string `json:"password"`
|
|
}
|
|
|
|
type AccountChangePasswordForm struct {
|
|
Username string `json:"username"`
|
|
OldPassword string `json:"oldPassword"`
|
|
NewPassword string `json:"newPassword"`
|
|
}
|