Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Book ¶
type Book struct {
ID uint `orm:"column(id)" json:"id"`
Author string `json:"author"`
Publisher string `json:"publisher"`
Title string `json:"title"`
Type string `json:"type"`
Lang string `json:"lang"`
File string `json:"-"`
Subject string `json:"subject"`
Description string `json:"description"`
PublishedAt time.Time `json:"publishedAt"`
Cover string `json:"cover"`
UpdatedAt time.Time `orm:"auto_now" json:"updatedAt"`
CreatedAt time.Time `orm:"auto_now_add" json:"createdAt"`
}
Book book
Click to show internal directories.
Click to hide internal directories.