コード例 #1
0
  /**
   * 学院列表
   *
   * @param model
   * @return
   * @throws Exception
   */
  @RequestMapping("/collegeList")
  public String getcollegeList(Model model) throws Exception {

    List<CollegeDomain> collegeList = collegeService.doGetFilterList();
    model.addAttribute("collegeList", collegeList);

    return "/adminView/college/collegeList";
  }