package entity type Book struct { ID uint64 Title string Author string } func NewBook(title, author string) Book { return Book{ Title: title ...
確定! 回上一頁