| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Code generated by sqlc. DO NOT EDIT.
- // versions:
- // sqlc v1.30.0
- package queries
- import (
- "time"
- )
- type IpProvider struct {
- ID int64 `json:"id"`
- Url string `json:"url"`
- Name string `json:"name"`
- Enabled int64 `json:"enabled"`
- Priority int64 `json:"priority"`
- CreatedAt time.Time `json:"created_at"`
- UpdatedAt time.Time `json:"updated_at"`
- }
- type Record struct {
- ID int64 `json:"id"`
- ZoneID int64 `json:"zone_id"`
- CfRecordID string `json:"cf_record_id"`
- Name string `json:"name"`
- Type string `json:"type"`
- Content string `json:"content"`
- Proxied int64 `json:"proxied"`
- IsStatic int64 `json:"is_static"`
- LastUpdatedAt *time.Time `json:"last_updated_at"`
- CreatedAt time.Time `json:"created_at"`
- UpdatedAt time.Time `json:"updated_at"`
- }
- type Setting struct {
- Key string `json:"key"`
- Value string `json:"value"`
- }
- type User struct {
- ID int64 `json:"id"`
- Username string `json:"username"`
- PasswordHash string `json:"password_hash"`
- CreatedAt time.Time `json:"created_at"`
- }
- type Zone struct {
- ID int64 `json:"id"`
- ZoneID string `json:"zone_id"`
- Name string `json:"name"`
- ApiKey string `json:"api_key"`
- CreatedAt time.Time `json:"created_at"`
- UpdatedAt time.Time `json:"updated_at"`
- }
|