基础项目
Some checks failed
CI / init (pull_request) Has been cancelled
CI / Frontend node 18.16.0 (pull_request) Has been cancelled
CI / Backend go (1.22) (pull_request) Has been cancelled
CI / release-pr (pull_request) Has been cancelled
CI / devops-test (1.22, 18.16.0) (pull_request) Has been cancelled
CI / release-please (pull_request) Has been cancelled
CI / devops-prod (1.22, 18.x) (pull_request) Has been cancelled
CI / docker (pull_request) Has been cancelled

This commit is contained in:
2026-04-26 15:32:21 +08:00
parent cc40d743cb
commit 1e33640629
102 changed files with 4088 additions and 197 deletions

View File

@@ -0,0 +1,31 @@
package response
import "github.com/flipped-aurora/gin-vue-admin/server/model/book"
type BookResponse struct {
Book book.Book `json:"book"`
}
type BookAuthorResponse struct {
BookAuthor book.BookAuthor `json:"bookAuthor"`
}
type BookAuthorRelationResponse struct {
BookAuthorRelation book.BookAuthorRelation `json:"bookAuthorRelation"`
}
type BookChapterResponse struct {
BookChapter book.BookChapter `json:"bookChapter"`
}
type BookCommentResponse struct {
BookComment book.BookComment `json:"bookComment"`
}
type BookCommentLikeRecordResponse struct {
BookCommentLikeRecord book.BookCommentLikeRecord `json:"bookCommentLikeRecord"`
}
type BookFavoriteRecordResponse struct {
BookFavoriteRecord book.BookFavoriteRecord `json:"bookFavoriteRecord"`
}
type BookReadRecordResponse struct {
BookReadRecord book.BookReadRecord `json:"bookReadRecord"`
}
type BookSeriesResponse struct {
BookSeries book.BookSeries `json:"bookSeries"`
}