This repository has been archived on 2025-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
boilerplate/internal/models/models.go
2025-03-16 11:33:19 +07:00

10 lines
217 B
Go

package models
var Entities = []any{&Post{}}
type Post struct {
Id uint `gorm:"primaryKey" ui:"hidden"`
Text string `ui:"label:Текст;"`
CreatedAt uint `gorm:"autoCreateTime" ui:"readonly"`
}