153 lines
6.5 KiB
Go
153 lines
6.5 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
|
|
package database
|
|
|
|
import (
|
|
"time"
|
|
|
|
"dynatron.me/x/stillbox/internal/jsontypes"
|
|
"dynatron.me/x/stillbox/pkg/alerting/rules"
|
|
"github.com/google/uuid"
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Alert struct {
|
|
ID int `json:"id,omitempty"`
|
|
Time pgtype.Timestamptz `json:"time,omitempty"`
|
|
TGID int `json:"tgid,omitempty"`
|
|
SystemID int `json:"system_id,omitempty"`
|
|
Weight *float32 `json:"weight,omitempty"`
|
|
Score *float32 `json:"score,omitempty"`
|
|
OrigScore *float32 `json:"orig_score,omitempty"`
|
|
Notified bool `json:"notified,omitempty"`
|
|
Metadata []byte `json:"metadata,omitempty"`
|
|
}
|
|
|
|
type ApiKey struct {
|
|
ID int `json:"id,omitempty"`
|
|
Owner int `json:"owner,omitempty"`
|
|
CreatedAt time.Time `json:"created_at,omitempty"`
|
|
Expires pgtype.Timestamp `json:"expires,omitempty"`
|
|
Disabled *bool `json:"disabled,omitempty"`
|
|
ApiKey string `json:"api_key,omitempty"`
|
|
}
|
|
|
|
type Call struct {
|
|
ID uuid.UUID `json:"id,omitempty"`
|
|
Submitter *int32 `json:"submitter,omitempty"`
|
|
System int `json:"system,omitempty"`
|
|
Talkgroup int `json:"talkgroup,omitempty"`
|
|
CallDate pgtype.Timestamptz `json:"call_date,omitempty"`
|
|
AudioName *string `json:"audio_name,omitempty"`
|
|
AudioBlob []byte `json:"audio_blob,omitempty"`
|
|
Duration *int32 `json:"duration,omitempty"`
|
|
AudioType *string `json:"audio_type,omitempty"`
|
|
AudioUrl *string `json:"audio_url,omitempty"`
|
|
Frequency int `json:"frequency,omitempty"`
|
|
Frequencies []int `json:"frequencies,omitempty"`
|
|
Patches []int `json:"patches,omitempty"`
|
|
TGLabel *string `json:"tg_label,omitempty"`
|
|
TGAlphaTag *string `json:"tg_alpha_tag,omitempty"`
|
|
TGGroup *string `json:"tg_group,omitempty"`
|
|
Source int `json:"source,omitempty"`
|
|
Transcript *string `json:"transcript,omitempty"`
|
|
}
|
|
|
|
type Incident struct {
|
|
ID uuid.UUID `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Description *string `json:"description,omitempty"`
|
|
StartTime pgtype.Timestamptz `json:"start_time,omitempty"`
|
|
EndTime pgtype.Timestamptz `json:"end_time,omitempty"`
|
|
Location []byte `json:"location,omitempty"`
|
|
Metadata jsontypes.Metadata `json:"metadata,omitempty"`
|
|
}
|
|
|
|
type IncidentsCall struct {
|
|
IncidentID uuid.UUID `json:"incident_id,omitempty"`
|
|
CallID uuid.UUID `json:"call_id,omitempty"`
|
|
CallsTblID pgtype.UUID `json:"calls_tbl_id,omitempty"`
|
|
SweptCallID pgtype.UUID `json:"swept_call_id,omitempty"`
|
|
CallDate pgtype.Timestamptz `json:"call_date,omitempty"`
|
|
Notes []byte `json:"notes,omitempty"`
|
|
}
|
|
|
|
type Setting struct {
|
|
Name string `json:"name,omitempty"`
|
|
UpdatedBy *int32 `json:"updated_by,omitempty"`
|
|
Value []byte `json:"value,omitempty"`
|
|
}
|
|
|
|
type SweptCall struct {
|
|
ID uuid.UUID `json:"id,omitempty"`
|
|
Submitter *int32 `json:"submitter,omitempty"`
|
|
System int `json:"system,omitempty"`
|
|
Talkgroup int `json:"talkgroup,omitempty"`
|
|
CallDate pgtype.Timestamptz `json:"call_date,omitempty"`
|
|
AudioName *string `json:"audio_name,omitempty"`
|
|
AudioBlob []byte `json:"audio_blob,omitempty"`
|
|
Duration *int32 `json:"duration,omitempty"`
|
|
AudioType *string `json:"audio_type,omitempty"`
|
|
AudioUrl *string `json:"audio_url,omitempty"`
|
|
Frequency int `json:"frequency,omitempty"`
|
|
Frequencies []int `json:"frequencies,omitempty"`
|
|
Patches []int `json:"patches,omitempty"`
|
|
TGLabel *string `json:"tg_label,omitempty"`
|
|
TGAlphaTag *string `json:"tg_alpha_tag,omitempty"`
|
|
TGGroup *string `json:"tg_group,omitempty"`
|
|
Source int `json:"source,omitempty"`
|
|
Transcript *string `json:"transcript,omitempty"`
|
|
}
|
|
|
|
type System struct {
|
|
ID int `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
}
|
|
|
|
type Talkgroup struct {
|
|
ID int `json:"id,omitempty"`
|
|
SystemID int32 `json:"system_id,omitempty"`
|
|
TGID int32 `json:"tgid,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
AlphaTag *string `json:"alpha_tag,omitempty"`
|
|
TGGroup *string `json:"tg_group,omitempty"`
|
|
Frequency *int32 `json:"frequency,omitempty"`
|
|
Metadata jsontypes.Metadata `json:"metadata,omitempty"`
|
|
Tags []string `json:"tags,omitempty"`
|
|
Alert bool `json:"alert,omitempty"`
|
|
AlertConfig rules.AlertRules `json:"alert_config,omitempty"`
|
|
Weight float32 `json:"weight,omitempty"`
|
|
Learned bool `json:"learned,omitempty"`
|
|
Ignored bool `json:"ignored,omitempty"`
|
|
}
|
|
|
|
type TalkgroupVersion struct {
|
|
ID int `json:"id,omitempty"`
|
|
Time pgtype.Timestamptz `json:"time,omitempty"`
|
|
CreatedBy *int32 `json:"created_by,omitempty"`
|
|
Deleted *bool `json:"deleted,omitempty"`
|
|
SystemID *int32 `json:"system_id,omitempty"`
|
|
TGID *int32 `json:"tgid,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
AlphaTag *string `json:"alpha_tag,omitempty"`
|
|
TGGroup *string `json:"tg_group,omitempty"`
|
|
Frequency *int32 `json:"frequency,omitempty"`
|
|
Metadata []byte `json:"metadata,omitempty"`
|
|
Tags []string `json:"tags,omitempty"`
|
|
Alert *bool `json:"alert,omitempty"`
|
|
AlertConfig []byte `json:"alert_config,omitempty"`
|
|
Weight *float32 `json:"weight,omitempty"`
|
|
Learned *bool `json:"learned,omitempty"`
|
|
Ignored *bool `json:"ignored,omitempty"`
|
|
}
|
|
|
|
type User struct {
|
|
ID int `json:"id,omitempty"`
|
|
Username string `json:"username,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
Email string `json:"email,omitempty"`
|
|
IsAdmin bool `json:"is_admin,omitempty"`
|
|
Prefs []byte `json:"prefs,omitempty"`
|
|
}
|