package
Version:
v0.0.0-...-31439ab
Opens a new window with list of versions in this module.
Published: Oct 23, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type DBModel interface {
}
type Model struct {
ID uint `gorm:"column:id;primaryKey" json:"id,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
UpdatedAt time.Time `json:"updatedAt,omitempty"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deletedAt,omitempty"`
}
type StringIDModel struct {
ID string `gorm:"column:id;primaryKey;type:varchar(64)" json:"id,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
UpdatedAt time.Time `json:"updatedAt,omitempty"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deletedAt,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.