目录标题 一、Reflection反射1. What is reflection? 什么是反射2. Inspect a variable and find its type 检查变量并找到它的类型3. Reflect.Type and reflect.Value 反射类型和值4. Reflect.Kind 查看底层种类5. NumField() and Field() methods 字段数量和索引值方法6. In…
type A struct {CreateTime *time.Time gorm:"create_time"
}
1、定义数据库表映射结构体如上,create_time字段在表里面是datetime格式。
2、如果CreateTime不给值,在存库时,create_time字段的值为NULL。
3、赋值时,…