@RequestMapping(value = "/{id}", method = RequestMethod.GET)
 public Company getCompanyDetail(@PathVariable("id") Integer id) {
   return companyService.getCompanyDetail(id);
 }