forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.go
More file actions
71 lines (60 loc) · 1.54 KB
/
models.go
File metadata and controls
71 lines (60 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package batch
import (
"database/sql/driver"
"fmt"
"github.com/jackc/pgx/v5/pgtype"
)
type BookType string
const (
BookTypeFICTION BookType = "FICTION"
BookTypeNONFICTION BookType = "NONFICTION"
)
func (e *BookType) Scan(src interface{}) error {
switch s := src.(type) {
case []byte:
*e = BookType(s)
case string:
*e = BookType(s)
default:
return fmt.Errorf("unsupported scan type for BookType: %T", src)
}
return nil
}
type NullBookType struct {
BookType BookType `json:"book_type"`
Valid bool `json:"valid"` // Valid is true if BookType is not NULL
}
// Scan implements the Scanner interface.
func (ns *NullBookType) Scan(value interface{}) error {
if value == nil {
ns.BookType, ns.Valid = "", false
return nil
}
ns.Valid = true
return ns.BookType.Scan(value)
}
// Value implements the driver Valuer interface.
func (ns NullBookType) Value() (driver.Value, error) {
if !ns.Valid {
return nil, nil
}
return string(ns.BookType), nil
}
type Author struct {
AuthorID int32 `json:"author_id"`
Name string `json:"name"`
Biography []byte `json:"biography"`
}
type Book struct {
BookID int32 `json:"book_id"`
AuthorID int32 `json:"author_id"`
Isbn string `json:"isbn"`
BookType BookType `json:"book_type"`
Title string `json:"title"`
Year int32 `json:"year"`
Available pgtype.Timestamptz `json:"available"`
Tags []string `json:"tags"`
}