Files
reloading-manager/backend/models/manufacturer/models.go
2025-04-18 17:30:11 -04:00

17 lines
340 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package manufacturer
import (
"github.com/jackc/pgx/v5/pgtype"
)
type Manufacturer struct {
ID pgtype.UUID `json:"id"`
Name string `json:"name"`
Url pgtype.Text `json:"url"`
CreatedAt pgtype.Timestamp `json:"created_at"`
}