remove useless annotation (#761)

This commit is contained in:
heyanfu 2021-06-14 16:00:47 +08:00 committed by GitHub
parent a2fbc14c70
commit 58cdba2c5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,8 +54,8 @@ type (
createRequest struct {
innerType
name string `form:"name"` // niha
age int `form:"age,optional"` // nihaod
name string `form:"name"`
age int `form:"age,optional"`
address []address `json:"address,optional"`
}