对于正常的结构体字段,你也可以通过标签 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 }
embedded