/**
   * service Xóa Thuộc tính
   *
   * @param id
   * @return
   */
  @ResponseBody
  @RequestMapping(value = "/delproperty", method = RequestMethod.GET)
  public Response delproperty(@RequestParam(value = "id", defaultValue = "") String id) {
    try {

      categoryService.removeProperty(id);
    } catch (Exception e) {
      return new Response(false, e.getMessage());
    }
    return new Response(true, "Xóa thành công");
  }