public async Task <IActionResult> GetUserPoster()
 {
     return(await ActionWrapAsync(async() =>
     {
         ResultData <RpsData <IEnumerable <RpsPoster> > > result = new ResultData <RpsData <IEnumerable <RpsPoster> > >();
         var param = HttpContext.User.GetUserBase();
         result.Data = await _otherService.GetUserPoster(param);
         return result;
     }));
 }