mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-02 12:46:35 +08:00
12 lines
292 B
Go
12 lines
292 B
Go
package form
|
|
|
|
type AccountCreateForm struct {
|
|
Username *string `json:"username" binding:"required,min=4,max=16"`
|
|
}
|
|
|
|
type AccountUpdateForm struct {
|
|
Password *string `json:"password" binding:"required,min=6,max=16"`
|
|
|
|
RePassword *string `json:"rePassword" binding:"required,min=4,max=16"`
|
|
}
|