common.go 221 B

12345678910111213
  1. package specialAPIModels
  2. import (
  3. "time"
  4. )
  5. type common struct {
  6. Id int `json:",omitempty" gorm:"primary_key"`
  7. CreatedAt *time.Time `json:"created_at,omitempty"`
  8. UpdatedAt *time.Time `json:"updated_at,omitempty"`
  9. }