求问:
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"`
}
两个结构体能拼凑成一个么?
```go
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"`
}
```
当然是可以的,上面你原有的代码,下面是组合后的数据:
```go
type User struct {
ID int32 `gorm:"primary_key;AUTO_INCREMENT;not null" json:"id"`
Time int64 `json:"time"`
Info string `gorm:"type:text;not null" json:"info"`
}
```
#2