/** 个人积分兑换申请详情 */
 @RequestMapping(value = "toScoreUserCostById.html", method = RequestMethod.GET)
 public ModelAndView getScoreUserCostById(
     @RequestParam("sucId") String sucId, @RequestParam("uid") String uid, ModelMap model) {
   ScoreUserCostBo scoreUserCost = scoreUserCostService.getScoreUserCost(sucId);
   model.put("scoreUserCost", scoreUserCost);
   model.put("sucId", sucId);
   model.put("uid", uid);
   UserInfoParam p = new UserInfoParam();
   p.setId(uid);
   UserInfoBo user = userInfoService.getUserInfo(p);
   // 查看指定用户所在部门 的剩余积分
   String orgId = user.getOrg().getOrgId();
   OrganizationBo organizationBo = organizationService.getOrganization(orgId);
   String orgName = organizationBo.getName();
   model.put("orgName", orgName);
   return new ModelAndView("scoreUser/rewardApplyInformation", model);
 }