结构体嵌入

对于正常的结构体字段,你也可以通过标签 embedded 将其嵌入,例如

type Author struct { Name string Email string } type Blog struct { ID int Author Author `gorm:"embedded"` Upvotes int32 } // 等效于 type Blog struct { ID int64 Name string Email string Upvotes int32 }

  

posted @ 2021-06-07 20:45  winyh  阅读(38)  评论(0编辑  收藏  举报