书籍列表接口新增参数

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,10 +23,14 @@ func (c *ControllerV1) Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoR
}
return &v1.InfoRes{
UserId: out.UserId,
Username: out.Username,
Avatar: out.Avatar,
Email: out.Email,
Points: out.Points,
Id: out.Id,
Username: out.Username,
Avatar: out.Avatar,
Email: out.Email,
Points: out.Points,
BackgroundUrl: out.BackgroundUrl,
AttentionCount: out.AttentionCount,
IsAuthor: out.IsAuthor,
AuthorStatus: out.AuthorStatus,
}, nil
}