/**
  * map mới 1 thương hiệu và danh mục
  *
  * @param manuId
  * @param cateId
  * @return
  */
 @RequestMapping(value = "/addmapmanufacturer", method = RequestMethod.GET)
 @ResponseBody
 public Response addMap(
     @RequestParam(value = "manuId", defaultValue = "") String manuId,
     @RequestParam(value = "cateId", defaultValue = "") String cateId) {
   CategoryManufacturer map = new CategoryManufacturer();
   map.setCategoryId(cateId);
   map.setManufacturerId(manuId);
   try {
     return manufacturerService.addMap(map);
   } catch (Exception ex) {
     return new Response(false, ex.getMessage());
   }
 }
 /**
  * service Xóa Giá Trị Thuộc tính
  *
  * @param catid
  * @param manufacturerId
  * @return
  */
 @ResponseBody
 @RequestMapping(value = "/delmapmanufacturer", method = RequestMethod.GET)
 public Response delMapManuFacturer(
     @RequestParam(value = "catid", defaultValue = "") String catid,
     @RequestParam(value = "manufacturerId", defaultValue = "") String manufacturerId) {
   try {
     CategoryManufacturer CM = new CategoryManufacturer();
     CM.setCategoryId(catid);
     CM.setManufacturerId(manufacturerId);
     manufacturerService.removeMap(CM);
   } catch (Exception e) {
     return new Response(false, e.getMessage());
   }
   return new Response(true, "Đã xóa thành công thương hiệu đã map");
 }