model.go 246 B

12345678
  1. package models
  2. type Model struct {
  3. ID int64 `gorm:"column:id;primary_key;auto_increment;"`
  4. CreatedAt JSONTime `gorm:"column:created_at"`
  5. UpdatedAt JSONTime `gorm:"column:updated_at"`
  6. DeletedAt JSONTime `gorm:"column:deleted_at"`
  7. }