mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 05:21:57 +00:00
14 lines
225 B
Cheetah
14 lines
225 B
Cheetah
{{define "model"}}package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type {{Pascal .Entity}} struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Name string `gorm:"not null"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
{{end}}
|