Go
type A struct {
CreateTime *time.Time `gorm:"create_time"`
}
1、定义数据库表映射结构体如上,create_time字段在表里面是datetime格式。
2、如果CreateTime不给值,在存库时,create_time字段的值为NULL。
3、赋值时,如下代码
Go
a := A{}
now := time.Now()
a.CreateTime = &now