/**
   * 설문항목 통계를 조회한다.
   *
   * @param searchVO
   * @param qustnrQestnManageVO
   * @param commandMap
   * @param model
   * @return "egovframework/com/uss/olp/qqm/EgovQustnrQestnManageStatistics"
   * @throws Exception
   */
  @RequestMapping(value = "/uss/olp/qqm/EgovQustnrQestnManageStatistics.do")
  public String egovQustnrQestnManageStatistics(
      @ModelAttribute("searchVO") ComDefaultVO searchVO,
      QustnrQestnManageVO qustnrQestnManageVO,
      Map commandMap,
      ModelMap model)
      throws Exception {

    String sLocationUrl = "egovframework/com/uss/olp/qqm/EgovQustnrQestnManageStatistics";

    List sampleList =
        egovQustnrQestnManageService.selectQustnrQestnManageDetail(qustnrQestnManageVO);
    model.addAttribute("resultList", sampleList);
    // 객관식설문통계
    HashMap mapParam = new HashMap();
    mapParam.put("qestnrQesitmId", (String) qustnrQestnManageVO.getQestnrQesitmId());
    List statisticsList = egovQustnrQestnManageService.selectQustnrManageStatistics(mapParam);
    model.addAttribute("statisticsList", statisticsList);
    // 주관식설문통계
    List statisticsList2 = egovQustnrQestnManageService.selectQustnrManageStatistics2(mapParam);
    model.addAttribute("statisticsList2", statisticsList2);
    return sLocationUrl;
  }
 /**
  * 설문조사 통계를 조회한다.
  *
  * @param Map - 설문지 정보가 담김 Parameter
  * @return Map
  * @throws Exception
  */
 public List selectQustnrManageStatistics(Map map) throws Exception {
   return egovQustnrQestnManageService.selectQustnrManageStatistics(map);
 }