base.go 238 B

123456789101112
  1. package models
  2. import (
  3. "time"
  4. )
  5. type Model struct {
  6. ID string `gorm:"column:id;primaryKey;type:uuid;default:uuid_generate_v4()" json:"id"`
  7. CreatedAt time.Time `json:"created_at"`
  8. UpdatedAt time.Time `json:"updated_at"`
  9. }