书籍列表接口新增参数

This commit is contained in:
2025-08-13 15:19:42 +08:00
parent 6ccc87f2bf
commit 8afe651c64
201 changed files with 6987 additions and 1066 deletions

View File

@ -28,6 +28,8 @@ type (
SetFeatured(ctx context.Context, in *model.BookSetFeaturedIn) (out *model.BookCRUDOut, err error)
// SetRecommended: 单独修改书籍的推荐状态
SetRecommended(ctx context.Context, in *model.BookSetRecommendedIn) (out *model.BookCRUDOut, err error)
// SetHot: 单独修改书籍的热门状态
SetHot(ctx context.Context, in *model.BookSetHotIn) (out *model.BookCRUDOut, err error)
}
)