求问:
type User struct {
ID int32 `gorm:"primary_key;AUTO_INCREMENT;not null"`
Time int64
Info string `gorm:"type:text;not null"`
}
type User struct {
ID int32 `json:"id"`
Time int64 `json:"time"`
Info string `json:"info"`
}
两个结构体能拼凑成一个么?
有疑问加站长微信联系(非本文作者)