golang中给数据库datetime格式赋值

type A struct {
    CreateTime *time.Time `gorm:"create_time"`
}

1、定义数据库表映射结构体如上,create_time字段在表里面是datetime格式。

2、如果CreateTime不给值,在存库时,create_time字段的值为NULL。

3、赋值时,如下代码

a := A{}
now := time.Now()
a.CreateTime = &now

你可能感兴趣的:(go,数据库,golang,开发语言)