mirror of
https://github.com/beego/bee.git
synced 2025-12-19 20:07:52 +00:00
when use anonymous nested structures at @Param body,required stuct tag is invalid.
struct define like follow:
type StructA struct {
Name string `json:"name" required:"true"`
}
type StructB struct {
StructA
}
error:
when use StructB in @Param,required struct tag is not generated in swagger.json.