コード例 #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";
  }
コード例 #2
0
  /**
   * 学院详情页面
   *
   * @param model
   * @param id
   * @return
   * @throws Exception
   */
  @RequestMapping("/collegeView/{id}")
  public String docollegeView(Model model, @PathVariable String id) throws Exception {

    // 获取College信息
    CollegeDomain collegeDomain = collegeService.doGetById(id);
    model.addAttribute("collegeDomain", collegeDomain);

    return "/adminView/college/collegeView";
  }
コード例 #3
0
  /**
   * 删除单条数据
   *
   * @param id
   * @return
   * @throws Exception
   */
  @RequestMapping("/delete/{id}")
  @ResponseBody
  public String doDelete(@PathVariable String id) throws Exception {

    if (collegeService.doDeleteById(id)) {
      return Consts.SUCCESS;
    }

    return Consts.ERROR;
  }
コード例 #4
0
 /**
  * 保存
  *
  * @param domain
  * @param result
  * @return
  * @throws Exception
  */
 @RequestMapping("/save")
 @ResponseBody
 public String doSave(@Valid @ModelAttribute("domain") CollegeDomain domain, BindingResult result)
     throws Exception {
   if (result.hasErrors()) { // 如果校验失败,则返回
     return Consts.ERROR;
   } else {
     if (collegeService.doSave(domain)) {
       return Consts.SUCCESS;
     }
   }
   return Consts.ERROR;
 }