mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
10 lines
210 B
Go
10 lines
210 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:"min=6,max=16"`
|
|
}
|