外贸平台网站,想做一个自己的网站,建设部评职称查询网站,沈阳有资质做网站的公司type A struct {CreateTime *time.Time gorm:create_time
}
1、定义数据库表映射结构体如上#xff0c;create_time字段在表里面是datetime格式。
2、如果CreateTime不给值#xff0c;在存库时#xff0c;create_time字段的值为NULL。
3、赋值时#xff0c;…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