@RequestMapping(value = "/search", consumes = "application/json", method = RequestMethod.POST)
 @Override
 public HttpEntity<ResponseBean> search(@RequestBody Map<String, Object> fieldData)
     throws SpartanPersistenceException, Exception {
   ResponseBean responseBean = new ResponseBean();
   org.springframework.http.HttpStatus httpStatus = org.springframework.http.HttpStatus.OK;
   List<java.lang.Object> lstappcustomertype =
       appCustomerTyperepo.search("AppCustomerType.DefaultFinders", fieldData, getFieldMetaData());
   responseBean.add("success", true);
   responseBean.add("message", "Successfully retrived ");
   responseBean.add("data", lstappcustomertype);
   return new org.springframework.http.ResponseEntity<ResponseBean>(responseBean, httpStatus);
 }