书籍列表接口新增参数

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

@ -23,6 +23,10 @@ type (
// Apply 允许用户申请成为作者
Apply(ctx context.Context, in *model.AuthorApplyIn) (out *model.AuthorApplyOut, err error)
Detail(ctx context.Context, in *model.AuthorDetailIn) (out *model.AuthorDetailOut, err error)
// AuthorInfo 获取作者信息
AuthorInfo(ctx context.Context, in *model.AuthorInfoIn) (out *model.AuthorInfoOut, err error)
// 审核作者申请(通过/拒绝)
Review(ctx context.Context, in *model.AuthorReviewIn) (out *model.AuthorReviewOut, err error)
}
)