GET @GetMapping("/user/{user_no}/history/list") public List getUseData(@PathVariable("user_no") String user_no, @RequestParam("history_type") String htype, @RequestParam("start_date") String startDate, @RequestParam("end_date") String endDate) { List result = userHistoryService.getUserHistory(user_no, htype, startDate, endDate); return result; } @RequestMapping(value = "/user/{user_no}/history/l..