|
|
@@ -48,6 +48,7 @@ type UserClient interface {
|
|
|
FindLikeList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*statistics.LookAndLikeListReply, error)
|
|
|
// 查看喜欢我的列表
|
|
|
FindLikedList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*statistics.LookAndLikeListReply, error)
|
|
|
+ // 获取用户的访客数以及关注数
|
|
|
GetLookAndLikeStatisticsMessage(ctx context.Context, in *common.PersonParam, opts ...grpc.CallOption) (*statistics.LookAndLikeMessageReply, error)
|
|
|
}
|
|
|
|
|
|
@@ -215,6 +216,7 @@ type UserServer interface {
|
|
|
FindLikeList(context.Context, *common.ListPageRequest) (*statistics.LookAndLikeListReply, error)
|
|
|
// 查看喜欢我的列表
|
|
|
FindLikedList(context.Context, *common.ListPageRequest) (*statistics.LookAndLikeListReply, error)
|
|
|
+ // 获取用户的访客数以及关注数
|
|
|
GetLookAndLikeStatisticsMessage(context.Context, *common.PersonParam) (*statistics.LookAndLikeMessageReply, error)
|
|
|
mustEmbedUnimplementedUserServer()
|
|
|
}
|