lockserver/db/models.go

33 lines
432 B
Go
Raw Normal View History

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.20.0
package db
import (
"database/sql"
"time"
)
type Lock struct {
ID int64
Name string
ZwaveDeviceID int64
}
type LockCodeSlot struct {
ID int64
Lock int64
Code string
Slot int64
Name string
Enabled bool
}
type LockLog struct {
Lock int64
Timestamp time.Time
State string
Code sql.NullInt64
}