model 定义

type Plan struct {
	Id int `gorm:"primary_key"`
	Title string `gorm:"column:title;not null;size:128"`
	Start time.Time  `gorm:"type:date;column:start"`
	End time.Time  `gorm:"type:date;column:end"`
	Created   time.Time `gorm:"autoCreateTime;column:created;type:datetime"`
	IsDelete int `gorm:"column:is_delete;default:1"`
}

  相比官网的例子,增加了type属性

执行:

	db.AutoMigrate(&Plan{})

 

结果:

 GORM对实现datetime和date类型时间

 建议把类型改为string

type Plan struct {
	Id int `gorm:"primary_key"`
	User int `gorm:"column:user;not null"`
	Title string `gorm:"column:title;not null;size:128"`
	Start string `gorm:"type:date;column:start"`
	End string `gorm:"type:date;column:end"`
	Created   time.Time `gorm:"autoCreateTime;column:created;type:datetime"`
	IsDelete int `gorm:"column:is_delete;default:1"`
}

  这样gin处理前端发过来的时间比较友好,不然会出现这样的报错

parsing time "2019-09-06" as "2006-01-02T15:04:05Z07:00": cannot parse "" as "T"

 

 

 

 

 

相关文章:

  • 2022-12-23
  • 2021-04-11
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2021-07-09
  • 2022-01-04
  • 2022-01-06
猜你喜欢
  • 2021-11-26
  • 2022-12-23
  • 2021-06-19
  • 2022-12-23
  • 2021-05-18
  • 2022-12-23
  • 2022-02-11
相关资源
相似解决方案