models.go 332 B

12345678910111213141516171819202122232425
  1. // Code generated by sqlc. DO NOT EDIT.
  2. // versions:
  3. // sqlc v1.27.0
  4. package booktest
  5. import (
  6. "time"
  7. )
  8. type Author struct {
  9. AuthorID int64
  10. Name string
  11. }
  12. type Book struct {
  13. BookID int64
  14. AuthorID int64
  15. Isbn string
  16. BookType string
  17. Title string
  18. Yr int64
  19. Available time.Time
  20. Tag string
  21. }