15 lines
255 B
Go
15 lines
255 B
Go
|
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:"-"`
|
||
|
}
|