add batch delete user token

This commit is contained in:
lejianwen
2024-12-06 10:36:27 +08:00
parent 7749ff0729
commit 1c5cd3ae62
4 changed files with 18 additions and 20 deletions

View File

@@ -69,3 +69,7 @@ type RegisterForm struct {
Password string `json:"password" validate:"required,gte=4,lte=32"`
ConfirmPassword string `json:"confirm_password" validate:"required,gte=4,lte=32"`
}
type UserTokenBatchDeleteForm struct {
Ids []uint `json:"ids" validate:"required"`
}