我在使用通用 GORM 模型的 postgresql 表中遇到时间问题
gorm.Model
带字段
type Model struct {
ID uint `gorm:"primary_key"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}
表中的所有日期都具有格式 2020-04-21 22:05:07.067446 请我可以更改为 timstamp(LONG) 或没有 .067446 的内容
谢谢你的帮助
摇曳的蔷薇
相关分类