结构体标签
type Account struct {
Username string `json:"username"`
DisplayName string `json:"display_name"`
FavoriteColor string `json:"favorite_color,omitempty"`
}type StructName struct {
FieldName int `package1:"customdata,moredata" package2:"info"`
}最后更新于