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

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"`
}