private IOrderHistoryService orderHistoryService;
@RequestMapping(value = "/list", method = RequestMethod.GET)
public String listContacts(Map<String, Object> map) {
map.put("order", new OrderModel());
map.put("orderList", orderHistoryService.getUserHistory());
return "order";
}