-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathmodels.go
More file actions
45 lines (38 loc) · 879 Bytes
/
models.go
File metadata and controls
45 lines (38 loc) · 879 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
44
45
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.14.0
package batch
import (
"fmt"
"time"
)
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 Author struct {
AuthorID int32 `json:"author_id"`
Name string `json:"name"`
}
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 time.Time `json:"available"`
Tags []string `json:"tags"`
}