我根据在 mySQL 中创建表的方式创建了一系列结构:
type User struct {
UserID int
Email string
Password string
DateCreated time.Time
}
type Device struct {
DeviceID int
Udid string
DateCreated time.Time
DateUpdated time.Time
IntLoginTotal int
}
type DeviceInfo struct {
DeviceID int
DeviceName string
Model string
LocalizedModel string
SystemName string
SystemVersion string
Locale string
Language string
DateCreated time.Time
}
但是,我的印象是我将无法发出这样的请求,而是需要创建一个可以包含多个设备数组的单个结构(每个都包含多个设备信息记录的数组)。
这样做的最佳方法是什么?