public async Task <IActionResult> GetPoster([FromBody] ParamGetPoster param)
 {
     return(await ActionWrapAsync(async() =>
     {
         ResultData <RpsData <RpsUserGetPoster> > result = new ResultData <RpsData <RpsUserGetPoster> >();
         param = HttpContext.User.GetUserBase <ParamGetPoster>(param);
         result.Data = await _otherService.GetPoster(param);
         return result;
     }));
 }