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