meta.go 231 B

123456789
  1. package models
  2. import "time"
  3. type Meta struct {
  4. ID string `json:"id" yaml:"id" gorm:"primaryKey"`
  5. CreatedAt time.Time `json:"created_at" yaml:"created_at"`
  6. UpdatedAt time.Time `json:"updated_at" yaml:"updated_at"`
  7. }