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
43 lines (36 loc) · 714 Bytes
/
models.go
File metadata and controls
43 lines (36 loc) · 714 Bytes
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
// Code generated by sqlc. DO NOT EDIT.
package booktest
import (
"fmt"
"time"
)
type BooksBookType string
const (
BooksBookTypeFICTION BooksBookType = "FICTION"
BooksBookTypeNONFICTION BooksBookType = "NONFICTION"
)
func (e *BooksBookType) Scan(src interface{}) error {
switch s := src.(type) {
case []byte:
*e = BooksBookType(s)
case string:
*e = BooksBookType(s)
default:
return fmt.Errorf("unsupported scan type for BooksBookType: %T", src)
}
return nil
}
type Author struct {
AuthorID int32
Name string
}
type Book struct {
BookID int32
AuthorID int32
Isbn string
BookType BooksBookType
Title string
Yr int32
Available time.Time
Tags string
}