2023-11-01 23:21:12 +03:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2024-01-06 08:44:26 +03:00
|
|
|
"github.com/google/uuid"
|
2023-11-01 23:21:12 +03:00
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Model struct {
|
2024-01-06 08:44:26 +03:00
|
|
|
ID uuid.UUID `gorm:"primarykey" json:"id"`
|
2023-11-01 23:21:12 +03:00
|
|
|
CreatedAt time.Time `json:"-"`
|
|
|
|
UpdatedAt time.Time `json:"-"`
|
|
|
|
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
|
|
|
|
}
|