nquest/pkg/models/model.go

15 lines
255 B
Go
Raw Normal View History

2023-11-01 23:21:12 +03:00
package models
import (
"time"
"gorm.io/gorm"
)
type Model struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"-"`
UpdatedAt time.Time `json:"-"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
}