@RequestMapping(value = "/getlastsending") public String getEmployedDate(@ModelAttribute People people, Model map) { map.addAttribute("lastsending", stuffService.getEmployedDate(people)); return "employedate"; }
@RequestMapping(value = "/getstuffsalary") public String getStuffSalary(@ModelAttribute People people, Model map) { map.addAttribute("stuffsalary", stuffService.getStuffSalary(people)); return "stuffsalary"; }