Nexus/pkg/nex/models.go

15 lines
283 B
Go
Raw Normal View History

2024-10-19 14:36:33 +00:00
package nex
import (
"time"
"gorm.io/gorm"
)
type BaseModel struct {
ID uint `json:"id" gorm:"primaryKey"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `json:"deleted_at" gorm:"index"`
}