Files
certimate/internal/domain/meta.go
T
2026-01-20 14:51:05 +08:00

10 lines
200 B
Go

package domain
import "time"
type Meta struct {
Id string `db:"id" json:"id"`
CreatedAt time.Time `db:"created" json:"created"`
UpdatedAt time.Time `db:"updated" json:"updated"`
}