ea87f024c3
modified: main_dc/yalarba/api_es/internal/models/base.go prettify it
15 lines
380 B
Go
15 lines
380 B
Go
package models
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
"time"
|
|
)
|
|
|
|
type Base struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
CreatedAt time.Time `json:"created_at,omitempty"`
|
|
UpdatedAt time.Time `json:"updated_at,omitempty"`
|
|
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
|
|
UpdateHistories []UpdateHistory `gorm:"polymorphic:Model" json:"-"`
|
|
}
|