コード例 #1
0
 @RequestMapping(value = "/getlastsending")
 public String getEmployedDate(@ModelAttribute People people, Model map) {
   map.addAttribute("lastsending", stuffService.getEmployedDate(people));
   return "employedate";
 }
コード例 #2
0
 @RequestMapping(value = "/getstuffsalary")
 public String getStuffSalary(@ModelAttribute People people, Model map) {
   map.addAttribute("stuffsalary", stuffService.getStuffSalary(people));
   return "stuffsalary";
 }