Files
Turbine/pkg/shared/models/base.go
2025-12-13 22:51:11 +08:00

15 lines
282 B
Go

package models
import (
"time"
"gorm.io/gorm"
)
type Model struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"created_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"created_at"`
}