예제 #1
0
 @RequestMapping(value = "/officescheck", method = RequestMethod.GET)
 public String showMedClinicCheck(
     @ModelAttribute MedClinic clinic, @ModelAttribute Office office, Model map) {
   map.addAttribute("officescheck", medClinicService.getOfficeCheck(clinic, office));
   return "officescheck";
 }