public ApiResult <RankIntegralResDto> GetMyRank(string queryType)
        {
            var result = new ApiResult <RankIntegralResDto>();

            result.Data = _service.GetMyRank(queryType, (int)this.UserInfo.UserId);
            return(result);
        }