sqlc

package
v0.0.0-...-a66760f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 18, 2025 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountBase

type AccountBase struct {
	ID        int64
	Type      AccountType
	Username  string
	Password  string
	CreatedAt pgtype.Timestamptz
}

type AccountType

type AccountType string
const (
	AccountTypeACCOUNTTYPEADMIN AccountType = "ACCOUNT_TYPE_ADMIN"
	AccountTypeACCOUNTTYPEUSER  AccountType = "ACCOUNT_TYPE_USER"
)

func (*AccountType) Scan

func (e *AccountType) Scan(src interface{}) error

type AccountUser

type AccountUser struct {
	ID        int64
	FirstName string
	LastName  string
	Email     pgtype.Text
	Phone     pgtype.Text
	Company   pgtype.Text
	Address   pgtype.Text
}

type CountAccountsParams

type CountAccountsParams struct {
	ID            pgtype.Text
	Type          NullAccountType
	Username      pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
}

type CountArchsParams

type CountArchsParams struct {
	ID            pgtype.Text
	Name          pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
}

type CountDomainsParams

type CountDomainsParams struct {
	NetworkID pgtype.Int8
	Name      pgtype.Text
}

type CountInstanceLogsParams

type CountInstanceLogsParams struct {
	InstanceID    pgtype.Text
	Type          NullInstanceLogType
	Title         pgtype.Text
	Description   pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
}

type CountInstancesParams

type CountInstancesParams struct {
	AccountID     pgtype.Int8
	OsID          pgtype.Text
	ArchID        pgtype.Text
	RegionID      pgtype.Text
	Name          pgtype.Text
	CpuFrom       pgtype.Int4
	CpuTo         pgtype.Int4
	RamFrom       pgtype.Int4
	RamTo         pgtype.Int4
	StorageFrom   pgtype.Int4
	StorageTo     pgtype.Int4
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
}

type CountNetworksParams

type CountNetworksParams struct {
	InstanceID pgtype.Text
	PrivateIp  pgtype.Text
	MacAddress pgtype.Text
	PublicIp   pgtype.Text
}

type CountOSsParams

type CountOSsParams struct {
	ID            pgtype.Text
	Name          pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
}

type CountPaymentsParams

type CountPaymentsParams struct {
	AccountID       pgtype.Int8
	Method          NullPaymentMethod
	Status          NullPaymentStatus
	DateCreatedFrom pgtype.Timestamptz
	DateCreatedTo   pgtype.Timestamptz
}

type CountRegionsParams

type CountRegionsParams struct {
	ID   pgtype.Text
	Name pgtype.Text
}

type CreateAccountParams

type CreateAccountParams struct {
	Type     AccountType
	Username string
	Password string
}

type CreateArchParams

type CreateArchParams struct {
	ID   string
	Name string
}

type CreateDomainParams

type CreateDomainParams struct {
	NetworkID int64
	Name      string
}

type CreateInstanceLogParams

type CreateInstanceLogParams struct {
	InstanceID  string
	Type        InstanceLogType
	Title       string
	Description pgtype.Text
}

type CreateInstanceParams

type CreateInstanceParams struct {
	ID        string
	AccountID int64
	OsID      string
	ArchID    string
	RegionID  string
	Name      string
	Cpu       int32
	Ram       int32
	Storage   int32
}

type CreateNetworkParams

type CreateNetworkParams struct {
	InstanceID string
	PrivateIp  string
	MacAddress string
	PublicIp   pgtype.Text
}

type CreateOSParams

type CreateOSParams struct {
	ID   string
	Name string
}

type CreatePaymentItemParams

type CreatePaymentItemParams struct {
	PaymentID int64
	Name      string
	Price     int64
}

type CreatePaymentParams

type CreatePaymentParams struct {
	AccountID int64
	Method    PaymentMethod
	Status    PaymentStatus
	Total     int64
}

type CreatePaymentVnpayParams

type CreatePaymentVnpayParams struct {
	ID                 int64
	VnpTxnRef          string
	VnpOrderInfo       string
	VnpTransactionNo   string
	VnpTransactionDate string
	VnpCreateDate      string
	VnpIpAddr          string
}

type CreateRegionParams

type CreateRegionParams struct {
	ID   string
	Name string
}

type CreateUserParams

type CreateUserParams struct {
	ID        int64
	FirstName string
	LastName  string
	Email     pgtype.Text
	Phone     pgtype.Text
	Company   pgtype.Text
	Address   pgtype.Text
}

type DBTX

type DBTX interface {
	Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)
	Query(context.Context, string, ...interface{}) (pgx.Rows, error)
	QueryRow(context.Context, string, ...interface{}) pgx.Row
}

type GetAccountParams

type GetAccountParams struct {
	Type     AccountType
	ID       pgtype.Int8
	Username pgtype.Text
	Email    pgtype.Text
	Phone    pgtype.Text
}

type GetAccountRow

type GetAccountRow struct {
	ID        int64
	Type      AccountType
	Username  string
	Password  string
	CreatedAt pgtype.Timestamptz
	ID_2      pgtype.Int8
	FirstName pgtype.Text
	LastName  pgtype.Text
	Email     pgtype.Text
	Phone     pgtype.Text
	Company   pgtype.Text
	Address   pgtype.Text
}

type GetNetworkParams

type GetNetworkParams struct {
	ID         pgtype.Int8
	InstanceID pgtype.Text
}

type GetUserParams

type GetUserParams struct {
	ID       pgtype.Int8
	Username pgtype.Text
	Email    pgtype.Text
	Phone    pgtype.Text
}

type GetUserRow

type GetUserRow struct {
	ID        int64
	FirstName string
	LastName  string
	Email     pgtype.Text
	Phone     pgtype.Text
	Company   pgtype.Text
	Address   pgtype.Text
	ID_2      int64
	Type      AccountType
	Username  string
	Password  string
	CreatedAt pgtype.Timestamptz
}

type InstanceBase

type InstanceBase struct {
	ID        string
	AccountID int64
	OsID      string
	ArchID    string
	RegionID  string
	Name      string
	Cpu       int32
	Ram       int32
	Storage   int32
	CreatedAt pgtype.Timestamptz
}

type InstanceDomain

type InstanceDomain struct {
	ID        int64
	NetworkID int64
	Name      string
}

type InstanceLog

type InstanceLog struct {
	ID          int64
	InstanceID  string
	Type        InstanceLogType
	Title       string
	Description pgtype.Text
	CreatedAt   pgtype.Timestamptz
}

type InstanceLogType

type InstanceLogType string
const (
	InstanceLogTypeLOGTYPEUNKNOWN InstanceLogType = "LOG_TYPE_UNKNOWN"
	InstanceLogTypeLOGTYPEINFO    InstanceLogType = "LOG_TYPE_INFO"
	InstanceLogTypeLOGTYPEWARNING InstanceLogType = "LOG_TYPE_WARNING"
	InstanceLogTypeLOGTYPEERROR   InstanceLogType = "LOG_TYPE_ERROR"
)

func (*InstanceLogType) Scan

func (e *InstanceLogType) Scan(src interface{}) error

type InstanceNetwork

type InstanceNetwork struct {
	ID         int64
	InstanceID string
	PrivateIp  string
	MacAddress string
	PublicIp   pgtype.Text
}

type InstanceRegion

type InstanceRegion struct {
	ID   string
	Name string
}

type ListAccountsParams

type ListAccountsParams struct {
	ID            pgtype.Text
	Type          NullAccountType
	Username      pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
	Offset        int32
	Limit         int32
}

type ListArchsParams

type ListArchsParams struct {
	ID            pgtype.Text
	Name          pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
	Offset        int32
	Limit         int32
}

type ListDomainsParams

type ListDomainsParams struct {
	NetworkID pgtype.Int8
	Name      pgtype.Text
	Offset    int32
	Limit     int32
}

type ListInstanceLogsParams

type ListInstanceLogsParams struct {
	InstanceID    pgtype.Text
	Type          NullInstanceLogType
	Title         pgtype.Text
	Description   pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
	Offset        int32
	Limit         int32
}

type ListInstancesParams

type ListInstancesParams struct {
	AccountID     pgtype.Int8
	OsID          pgtype.Text
	ArchID        pgtype.Text
	RegionID      pgtype.Text
	Name          pgtype.Text
	CpuFrom       pgtype.Int4
	CpuTo         pgtype.Int4
	RamFrom       pgtype.Int4
	RamTo         pgtype.Int4
	StorageFrom   pgtype.Int4
	StorageTo     pgtype.Int4
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
	Offset        int32
	Limit         int32
}

type ListNetworksParams

type ListNetworksParams struct {
	InstanceID pgtype.Text
	PrivateIp  pgtype.Text
	MacAddress pgtype.Text
	PublicIp   pgtype.Text
	Offset     int32
	Limit      int32
}

type ListOSsParams

type ListOSsParams struct {
	ID            pgtype.Text
	Name          pgtype.Text
	CreatedAtFrom pgtype.Timestamptz
	CreatedAtTo   pgtype.Timestamptz
	Offset        int32
	Limit         int32
}

type ListPaymentsParams

type ListPaymentsParams struct {
	AccountID       pgtype.Int8
	Method          NullPaymentMethod
	Status          NullPaymentStatus
	DateCreatedFrom pgtype.Timestamptz
	DateCreatedTo   pgtype.Timestamptz
	Offset          int32
	Limit           int32
}

type ListRegionsParams

type ListRegionsParams struct {
	ID     pgtype.Text
	Name   pgtype.Text
	Offset int32
	Limit  int32
}

type NullAccountType

type NullAccountType struct {
	AccountType AccountType
	Valid       bool // Valid is true if AccountType is not NULL
}

func (*NullAccountType) Scan

func (ns *NullAccountType) Scan(value interface{}) error

Scan implements the Scanner interface.

func (NullAccountType) Value

func (ns NullAccountType) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type NullInstanceLogType

type NullInstanceLogType struct {
	InstanceLogType InstanceLogType
	Valid           bool // Valid is true if InstanceLogType is not NULL
}

func (*NullInstanceLogType) Scan

func (ns *NullInstanceLogType) Scan(value interface{}) error

Scan implements the Scanner interface.

func (NullInstanceLogType) Value

func (ns NullInstanceLogType) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type NullPaymentMethod

type NullPaymentMethod struct {
	PaymentMethod PaymentMethod
	Valid         bool // Valid is true if PaymentMethod is not NULL
}

func (*NullPaymentMethod) Scan

func (ns *NullPaymentMethod) Scan(value interface{}) error

Scan implements the Scanner interface.

func (NullPaymentMethod) Value

func (ns NullPaymentMethod) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type NullPaymentStatus

type NullPaymentStatus struct {
	PaymentStatus PaymentStatus
	Valid         bool // Valid is true if PaymentStatus is not NULL
}

func (*NullPaymentStatus) Scan

func (ns *NullPaymentStatus) Scan(value interface{}) error

Scan implements the Scanner interface.

func (NullPaymentStatus) Value

func (ns NullPaymentStatus) Value() (driver.Value, error)

Value implements the driver Valuer interface.

type OsArch

type OsArch struct {
	ID        string
	Name      string
	CreatedAt pgtype.Timestamptz
}

type OsBase

type OsBase struct {
	ID        string
	Name      string
	CreatedAt pgtype.Timestamptz
}

type PaymentBase

type PaymentBase struct {
	ID          int64
	AccountID   int64
	Method      PaymentMethod
	Status      PaymentStatus
	Total       int64
	DateCreated pgtype.Timestamptz
}

type PaymentItem

type PaymentItem struct {
	ID        int64
	PaymentID int64
	Name      string
	Price     int64
}

type PaymentMethod

type PaymentMethod string
const (
	PaymentMethodPAYMENTMETHODUNKNOWN PaymentMethod = "PAYMENT_METHOD_UNKNOWN"
	PaymentMethodPAYMENTMETHODVNPAY   PaymentMethod = "PAYMENT_METHOD_VNPAY"
	PaymentMethodPAYMENTMETHODMOMO    PaymentMethod = "PAYMENT_METHOD_MOMO"
)

func (*PaymentMethod) Scan

func (e *PaymentMethod) Scan(src interface{}) error

type PaymentStatus

type PaymentStatus string
const (
	PaymentStatusPAYMENTSTATUSUNKNOWN  PaymentStatus = "PAYMENT_STATUS_UNKNOWN"
	PaymentStatusPAYMENTSTATUSPENDING  PaymentStatus = "PAYMENT_STATUS_PENDING"
	PaymentStatusPAYMENTSTATUSSUCCESS  PaymentStatus = "PAYMENT_STATUS_SUCCESS"
	PaymentStatusPAYMENTSTATUSCANCELED PaymentStatus = "PAYMENT_STATUS_CANCELED"
	PaymentStatusPAYMENTSTATUSFAILED   PaymentStatus = "PAYMENT_STATUS_FAILED"
)

func (*PaymentStatus) Scan

func (e *PaymentStatus) Scan(src interface{}) error

type PaymentVnpay

type PaymentVnpay struct {
	ID                 int64
	VnpTxnRef          string
	VnpOrderInfo       string
	VnpTransactionNo   string
	VnpTransactionDate string
	VnpCreateDate      string
	VnpIpAddr          string
}

type Queries

type Queries struct {
	// contains filtered or unexported fields
}

func New

func New(db DBTX) *Queries

func (*Queries) CountAccounts

func (q *Queries) CountAccounts(ctx context.Context, arg CountAccountsParams) (int64, error)

func (*Queries) CountArchs

func (q *Queries) CountArchs(ctx context.Context, arg CountArchsParams) (int64, error)

func (*Queries) CountDomains

func (q *Queries) CountDomains(ctx context.Context, arg CountDomainsParams) (int64, error)

func (*Queries) CountInstanceLogs

func (q *Queries) CountInstanceLogs(ctx context.Context, arg CountInstanceLogsParams) (int64, error)

func (*Queries) CountInstances

func (q *Queries) CountInstances(ctx context.Context, arg CountInstancesParams) (int64, error)

func (*Queries) CountNetworks

func (q *Queries) CountNetworks(ctx context.Context, arg CountNetworksParams) (int64, error)

func (*Queries) CountOSs

func (q *Queries) CountOSs(ctx context.Context, arg CountOSsParams) (int64, error)

func (*Queries) CountPayments

func (q *Queries) CountPayments(ctx context.Context, arg CountPaymentsParams) (int64, error)

func (*Queries) CountRegions

func (q *Queries) CountRegions(ctx context.Context, arg CountRegionsParams) (int64, error)

func (*Queries) CreateAccount

func (q *Queries) CreateAccount(ctx context.Context, arg CreateAccountParams) (AccountBase, error)

func (*Queries) CreateArch

func (q *Queries) CreateArch(ctx context.Context, arg CreateArchParams) (OsArch, error)

func (*Queries) CreateDomain

func (q *Queries) CreateDomain(ctx context.Context, arg CreateDomainParams) (InstanceDomain, error)

func (*Queries) CreateInstance

func (q *Queries) CreateInstance(ctx context.Context, arg CreateInstanceParams) (InstanceBase, error)

func (*Queries) CreateInstanceLog

func (q *Queries) CreateInstanceLog(ctx context.Context, arg CreateInstanceLogParams) (InstanceLog, error)

func (*Queries) CreateNetwork

func (q *Queries) CreateNetwork(ctx context.Context, arg CreateNetworkParams) (InstanceNetwork, error)

func (*Queries) CreateOS

func (q *Queries) CreateOS(ctx context.Context, arg CreateOSParams) (OsBase, error)

func (*Queries) CreatePayment

func (q *Queries) CreatePayment(ctx context.Context, arg CreatePaymentParams) (PaymentBase, error)

func (*Queries) CreatePaymentItem

func (q *Queries) CreatePaymentItem(ctx context.Context, arg CreatePaymentItemParams) (PaymentItem, error)

func (*Queries) CreatePaymentVnpay

func (q *Queries) CreatePaymentVnpay(ctx context.Context, arg CreatePaymentVnpayParams) (PaymentVnpay, error)

func (*Queries) CreateRegion

func (q *Queries) CreateRegion(ctx context.Context, arg CreateRegionParams) (InstanceRegion, error)

func (*Queries) CreateUser

func (q *Queries) CreateUser(ctx context.Context, arg CreateUserParams) (AccountUser, error)

func (*Queries) DeleteAccount

func (q *Queries) DeleteAccount(ctx context.Context, id int64) error

func (*Queries) DeleteArch

func (q *Queries) DeleteArch(ctx context.Context, id string) error

func (*Queries) DeleteDomain

func (q *Queries) DeleteDomain(ctx context.Context, id int64) error

func (*Queries) DeleteInstance

func (q *Queries) DeleteInstance(ctx context.Context, id string) error

func (*Queries) DeleteInstanceLog

func (q *Queries) DeleteInstanceLog(ctx context.Context, id int64) error

func (*Queries) DeleteNetwork

func (q *Queries) DeleteNetwork(ctx context.Context, id int64) error

func (*Queries) DeleteOS

func (q *Queries) DeleteOS(ctx context.Context, id string) error

func (*Queries) DeletePayment

func (q *Queries) DeletePayment(ctx context.Context, id int64) error

func (*Queries) DeleteRegion

func (q *Queries) DeleteRegion(ctx context.Context, id string) error

func (*Queries) GetAccount

func (q *Queries) GetAccount(ctx context.Context, arg GetAccountParams) (GetAccountRow, error)

func (*Queries) GetArch

func (q *Queries) GetArch(ctx context.Context, id string) (OsArch, error)

func (*Queries) GetDomain

func (q *Queries) GetDomain(ctx context.Context, id int64) (InstanceDomain, error)

func (*Queries) GetInstance

func (q *Queries) GetInstance(ctx context.Context, id string) (InstanceBase, error)

func (*Queries) GetInstanceLog

func (q *Queries) GetInstanceLog(ctx context.Context, id int64) (InstanceLog, error)

func (*Queries) GetNetwork

func (q *Queries) GetNetwork(ctx context.Context, arg GetNetworkParams) (InstanceNetwork, error)

func (*Queries) GetOS

func (q *Queries) GetOS(ctx context.Context, id string) (OsBase, error)

func (*Queries) GetPayment

func (q *Queries) GetPayment(ctx context.Context, id int64) (PaymentBase, error)

func (*Queries) GetRegion

func (q *Queries) GetRegion(ctx context.Context, id string) (InstanceRegion, error)

func (*Queries) GetUser

func (q *Queries) GetUser(ctx context.Context, arg GetUserParams) (GetUserRow, error)

func (*Queries) ListAccounts

func (q *Queries) ListAccounts(ctx context.Context, arg ListAccountsParams) ([]AccountBase, error)

func (*Queries) ListArchs

func (q *Queries) ListArchs(ctx context.Context, arg ListArchsParams) ([]OsArch, error)

func (*Queries) ListDomains

func (q *Queries) ListDomains(ctx context.Context, arg ListDomainsParams) ([]InstanceDomain, error)

TODO: add order by sqlc.arg('order_by')

func (*Queries) ListInstanceLogs

func (q *Queries) ListInstanceLogs(ctx context.Context, arg ListInstanceLogsParams) ([]InstanceLog, error)

func (*Queries) ListInstances

func (q *Queries) ListInstances(ctx context.Context, arg ListInstancesParams) ([]InstanceBase, error)

func (*Queries) ListNetworks

func (q *Queries) ListNetworks(ctx context.Context, arg ListNetworksParams) ([]InstanceNetwork, error)

func (*Queries) ListOSs

func (q *Queries) ListOSs(ctx context.Context, arg ListOSsParams) ([]OsBase, error)

func (*Queries) ListPayments

func (q *Queries) ListPayments(ctx context.Context, arg ListPaymentsParams) ([]PaymentBase, error)

func (*Queries) ListRegions

func (q *Queries) ListRegions(ctx context.Context, arg ListRegionsParams) ([]InstanceRegion, error)

func (*Queries) UpdateAccount

func (q *Queries) UpdateAccount(ctx context.Context, arg UpdateAccountParams) (AccountBase, error)

func (*Queries) UpdateArch

func (q *Queries) UpdateArch(ctx context.Context, arg UpdateArchParams) (OsArch, error)

func (*Queries) UpdateDomain

func (q *Queries) UpdateDomain(ctx context.Context, arg UpdateDomainParams) (InstanceDomain, error)

func (*Queries) UpdateInstance

func (q *Queries) UpdateInstance(ctx context.Context, arg UpdateInstanceParams) (InstanceBase, error)

func (*Queries) UpdateInstanceLog

func (q *Queries) UpdateInstanceLog(ctx context.Context, arg UpdateInstanceLogParams) (InstanceLog, error)

func (*Queries) UpdateNetwork

func (q *Queries) UpdateNetwork(ctx context.Context, arg UpdateNetworkParams) (InstanceNetwork, error)

func (*Queries) UpdateOS

func (q *Queries) UpdateOS(ctx context.Context, arg UpdateOSParams) (OsBase, error)

func (*Queries) UpdatePayment

func (q *Queries) UpdatePayment(ctx context.Context, arg UpdatePaymentParams) (PaymentBase, error)

func (*Queries) UpdateRegion

func (q *Queries) UpdateRegion(ctx context.Context, arg UpdateRegionParams) (InstanceRegion, error)

func (*Queries) UpdateUser

func (q *Queries) UpdateUser(ctx context.Context, arg UpdateUserParams) (AccountUser, error)

func (*Queries) WithTx

func (q *Queries) WithTx(tx pgx.Tx) *Queries

type UpdateAccountParams

type UpdateAccountParams struct {
	ID       int64
	Username pgtype.Text
	Password pgtype.Text
}

type UpdateArchParams

type UpdateArchParams struct {
	ID    string
	NewID pgtype.Text
	Name  pgtype.Text
}

type UpdateDomainParams

type UpdateDomainParams struct {
	ID   int64
	Name pgtype.Text
}

type UpdateInstanceLogParams

type UpdateInstanceLogParams struct {
	ID              int64
	InstanceID      pgtype.Text
	Type            NullInstanceLogType
	Title           pgtype.Text
	NullDescription bool
	Description     pgtype.Text
}

type UpdateInstanceParams

type UpdateInstanceParams struct {
	ID       string
	OsID     pgtype.Text
	ArchID   pgtype.Text
	RegionID pgtype.Text
	Name     pgtype.Text
	Cpu      pgtype.Int4
	Ram      pgtype.Int4
	Storage  pgtype.Int4
}

type UpdateNetworkParams

type UpdateNetworkParams struct {
	PrivateIp    pgtype.Text
	MacAddress   pgtype.Text
	NullPublicIp bool
	PublicIp     pgtype.Text
	ID           pgtype.Int8
	InstanceID   pgtype.Text
}

type UpdateOSParams

type UpdateOSParams struct {
	ID    string
	NewID pgtype.Text
	Name  pgtype.Text
}

type UpdatePaymentParams

type UpdatePaymentParams struct {
	ID     int64
	Method NullPaymentMethod
	Status NullPaymentStatus
	Total  pgtype.Int8
}

type UpdateRegionParams

type UpdateRegionParams struct {
	ID    string
	NewID pgtype.Text
	Name  pgtype.Text
}

type UpdateUserParams

type UpdateUserParams struct {
	ID          int64
	FirstName   pgtype.Text
	LastName    pgtype.Text
	NullEmail   bool
	Email       pgtype.Text
	NullPhone   bool
	Phone       pgtype.Text
	NullCompany bool
	Company     pgtype.Text
	NullAddress bool
	Address     pgtype.Text
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL