All checks were successful
continuous-integration/drone/push Build is passing
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
|
|
package queries
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
type Incident struct {
|
|
ID int64
|
|
ExternalID string
|
|
CreatedAt sql.NullTime
|
|
IncidentNumber sql.NullString
|
|
Description sql.NullString
|
|
ShortDescription sql.NullString
|
|
Urgency sql.NullInt64
|
|
Impact sql.NullInt64
|
|
State sql.NullInt64
|
|
AssignmentGroup sql.NullString
|
|
AssignedTo sql.NullString
|
|
Category sql.NullString
|
|
Subcategory sql.NullString
|
|
SysID sql.NullString
|
|
}
|
|
|
|
type Incoming struct {
|
|
ID int64
|
|
IncidentNumber sql.NullString
|
|
Description sql.NullString
|
|
ShortDescription sql.NullString
|
|
Urgency sql.NullString
|
|
Impact sql.NullString
|
|
State sql.NullString
|
|
ExternalID sql.NullString
|
|
WorkNotes sql.NullString
|
|
AssignmentGroup sql.NullString
|
|
AssignedTo sql.NullString
|
|
Category sql.NullString
|
|
Subcategory sql.NullString
|
|
CreatedAt sql.NullTime
|
|
}
|
|
|
|
type Worknote struct {
|
|
ID int64
|
|
IncidentNumber string
|
|
Note sql.NullString
|
|
}
|