nidapeng
2024-04-12 67508a2e3d00e59d429966ab42f4a45002b31dc6
server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java
@@ -641,6 +641,17 @@
      return  result;
   }
   /**
    *   获取全量用户列表2(根据条件分页查询)
    * @param body
    * @return
    */
   public static String personList(String body) {
      Map<String, String> path = getPath(HKConstants.InterfacePath.personList);
      String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数
      saveInterfaceLog(body,result,path);
      return  result;
   }
   /**
    *   增量获取组织列表
    * @param body
    * @return
@@ -719,4 +730,16 @@
      return  result;
   }
   /**
    * 查询场内车停车信息
    * @param body
    * @return
    */
   public static String tempCarInRecords(String body) {
      Map<String, String> path = getPath(HKConstants.InterfacePath.tempCarInRecords);
      String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数
      saveInterfaceLog(body,result,path);
      return  result;
   }
}