| | |
| | | * @return |
| | | */ |
| | | public static String getRootOrg() { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.rootOrg); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, "", null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog("",result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.rootOrg,null); |
| | | } |
| | | |
| | | |
| | |
| | | * @return |
| | | */ |
| | | public static String editOrg(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.editOrg); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.editOrg,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String addBatchOrg(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.addBatchOrg); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.addBatchOrg,body); |
| | | } |
| | | /** |
| | | * 删除组织信息 |
| | |
| | | * @return |
| | | */ |
| | | public static String delOrg(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.delBatchOrg); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.delBatchOrg,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String addUser(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.addUser); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.addUser,body); |
| | | } |
| | | |
| | | |
| | |
| | | * @return |
| | | */ |
| | | public static String addBatchUser(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.addBatchUser); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.addBatchUser,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String delBatchUser(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.delBatchUser); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.delBatchUser,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String editUser(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.editUser); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.editUser,body); |
| | | } |
| | | /** |
| | | * 添加人脸信息 |
| | |
| | | * @return |
| | | */ |
| | | public static String addFace(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.addFace); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.addFace,body); |
| | | } |
| | | /** |
| | | * 编辑人脸信息 |
| | |
| | | * @return |
| | | */ |
| | | public static String editFace(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.editFace); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.editFace,body); |
| | | } |
| | | /** |
| | | * 删除人脸信息 |
| | |
| | | * @return |
| | | */ |
| | | public static String delFace(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.delFace); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.delFace,body); |
| | | } |
| | | /** |
| | | * 全量获取车库信息 |
| | |
| | | * @return |
| | | */ |
| | | public static String parkList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.getParkList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.getParkList,body); |
| | | } |
| | | /** |
| | | * 根据车库编码查询出入口列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String entranceList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.getEntranceList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.getEntranceList,body); |
| | | } |
| | | /** |
| | | * 车辆预约 |
| | |
| | | * @return |
| | | */ |
| | | public static String parkAddition(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.parkAddition); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.parkAddition,body); |
| | | } |
| | | /** |
| | | * 车辆取消预约 |
| | |
| | | * @return |
| | | */ |
| | | public static String parkDeletion(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.parkDeletion); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.parkDeletion,body); |
| | | } |
| | | /** |
| | | * 固定车辆充值(包期) |
| | |
| | | * @return |
| | | */ |
| | | public static String carChargeAddtion(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.carChargeAddtion); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.carChargeAddtion,body); |
| | | } |
| | | /** |
| | | * 固定车辆取消包期 |
| | |
| | | * @return |
| | | */ |
| | | public static String carChargeDeletion(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.carChargeDeletion); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.carChargeDeletion,body); |
| | | } |
| | | |
| | | |
| | |
| | | * @return |
| | | */ |
| | | public static InputStream getVisitPicture(String body) throws Exception{ |
| | | |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.visitPicture); |
| | | //参数根据接口实际情况设置 |
| | | HttpResponse resp = ArtemisHttpUtil.doPostStringImgArtemis( path, body, null, null,"application/json",null); |
| | |
| | | * @return |
| | | */ |
| | | public static String doorSearch(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.doorSearch); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.doorSearch,body); |
| | | } |
| | | /** |
| | | * 获取门禁设备列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String acsDeviceList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.acsDeviceList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.acsDeviceList,body); |
| | | } |
| | | /** |
| | | * 增量获取门禁设备列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String acsDeviceTimeRangeList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.acsDeviceList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.acsDeviceList,body); |
| | | } |
| | | /** |
| | | * 访客预约 |
| | |
| | | * @return |
| | | */ |
| | | public static String visitAppiontment(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.visitAppiontment); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.visitAppiontment,body); |
| | | } |
| | | /** |
| | | * 访客免登记预约 |
| | |
| | | * @return |
| | | */ |
| | | public static String visitAppiontmentMDJ(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.visitAppiontmentMDJ); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.visitAppiontmentMDJ,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String visitCancel(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.visitCancel); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.visitCancel,body); |
| | | } |
| | | |
| | | public static String startDoPostStringArtemis(String pathStr,String body){ |
| | | Map<String, String> path = getPath(pathStr); |
| | | Map<String, String> header = new HashMap<>(); |
| | | header.put("tagId", UUID.randomUUID().toString().replace("-", "")); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return result; |
| | | |
| | | } |
| | | /** |
| | | * 签离访客预约 |
| | |
| | | * @return |
| | | */ |
| | | public static String visitOut(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.visitOut); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.visitOut,body); |
| | | } |
| | | /** |
| | | * 访客权限组 |
| | |
| | | * @return |
| | | */ |
| | | public static String privilegeGroup(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.privilegeGroup); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.privilegeGroup,body); |
| | | } |
| | | /** |
| | | * 事件订阅 |
| | |
| | | * @return |
| | | */ |
| | | public static String eventSub(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.eventSub); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.eventSub,body); |
| | | } |
| | | /** |
| | | * 取消事件订阅 |
| | |
| | | * @return |
| | | */ |
| | | public static String cancelEventSub(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.cancelEventSub); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.cancelEventSub,body); |
| | | } |
| | | /** |
| | | * 创建一卡通权限下载任务 |
| | |
| | | * @return |
| | | */ |
| | | public static String taskAddition(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.taskAddition); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.taskAddition,body); |
| | | } |
| | | /** |
| | | * 查询一卡通权限查询设备通道的人员权限下载详情总数v2 |
| | |
| | | * @return |
| | | */ |
| | | public static String taskProgress(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.taskProgress); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.taskProgress,body); |
| | | } |
| | | /** |
| | | * 查询一卡通权限下载任务进度 |
| | |
| | | * @return |
| | | */ |
| | | public static String taskProgressNum(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.taskProgressNum); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.taskProgressNum,body); |
| | | } |
| | | /** |
| | | * 一卡通权限下载任务中添加数据_根据人员与设备通道指定下载 |
| | |
| | | * @return |
| | | */ |
| | | public static String taskDataAddition(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.taskDataAddition); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.taskDataAddition,body); |
| | | } |
| | | /** |
| | | * 一卡通开始下载任务 |
| | |
| | | * @return |
| | | */ |
| | | public static String taskStart(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.taskStart); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.taskStart,body); |
| | | } |
| | | /** |
| | | * 查询权限条目列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String authItemList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.authItemList); |
| | | Map<String, String> header = new HashMap<>(); |
| | | header.put("tagId", UUID.randomUUID().toString().replace("-", "")); |
| | | // header.put("tagId", "frs"); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.authItemList,body); |
| | | } |
| | | /** |
| | | * 批量开卡 |
| | |
| | | * @return |
| | | */ |
| | | public static String cardBingding(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.cardBingding); |
| | | Map<String, String> header = new HashMap<>(); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.cardBingding,body); |
| | | } |
| | | /** |
| | | * 退卡 |
| | |
| | | * @return |
| | | */ |
| | | public static String cardDeletion(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.cardDeletion); |
| | | Map<String, String> header = new HashMap<>(); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.cardDeletion,body); |
| | | } |
| | | /** |
| | | * 批量挂失 |
| | |
| | | * @return |
| | | */ |
| | | public static String cardLoss(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.cardLoss); |
| | | Map<String, String> header = new HashMap<>(); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.cardLoss,body); |
| | | } |
| | | /** |
| | | * 批量解挂 |
| | |
| | | * @return |
| | | */ |
| | | public static String cardUnloss(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.cardUnloss); |
| | | Map<String, String> header = new HashMap<>(); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.cardUnloss,body); |
| | | } |
| | | /** |
| | | * 查询设备通道的人员权限下载详情 |
| | |
| | | * @return |
| | | */ |
| | | public static String taskPersoDetail(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.taskPersoDetail); |
| | | Map<String, String> header = new HashMap<>(); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", header);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.taskPersoDetail,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String visitingRecords(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.visitingRecords); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.visitingRecords,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String appointmentRecords(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.appointmentRecords); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.appointmentRecords,body); |
| | | } |
| | | /** |
| | | * 获取全量组织列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String orgAllList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.orgAllList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.orgAllList,body); |
| | | } |
| | | /** |
| | | * 获取全量用户列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String userAllList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.userAllList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.userAllList,body); |
| | | } |
| | | /** |
| | | * 获取全量用户列表2(根据条件分页查询) |
| | |
| | | * @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; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.personList,body); |
| | | } |
| | | /** |
| | | * 增量获取组织列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String orgTimeRangeList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.orgTimeRangeList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.orgTimeRangeList,body); |
| | | } |
| | | /** |
| | | * 增量获取用户列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String userTimeRangeList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.userTimeRangeList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.userTimeRangeList,body); |
| | | } |
| | | /** |
| | | * 增量获取车辆列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String vehicleTimeRangeList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.vehicleTimeRangeList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.vehicleTimeRangeList,body); |
| | | } |
| | | /** |
| | | * 全量获取车辆列表 |
| | |
| | | * @return |
| | | */ |
| | | public static String vehicleList(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.vehicleList); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.vehicleList,body); |
| | | } |
| | | /** |
| | | * 停车场过车记录查询 |
| | |
| | | * @return |
| | | */ |
| | | public static String parkCrossRecords(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.parkCrossRecords); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.parkCrossRecords,body); |
| | | } |
| | | /** |
| | | * 停车场过车记录查询 |
| | | * 人脸评分 |
| | | * @param body |
| | | * @return |
| | | */ |
| | | public static String facePictureCheck(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.facePictureCheck); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.facePictureCheck,body); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | public static String acsDeviceStatus(String body) { |
| | | Map<String, String> path = getPath(HKConstants.InterfacePath.acsDeviceStatus); |
| | | String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post请求application/json类型参数 |
| | | saveInterfaceLog(body,result,path); |
| | | return result; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.acsDeviceStatus,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; |
| | | return startDoPostStringArtemis(HKConstants.InterfacePath.tempCarInRecords,body); |
| | | } |
| | | |
| | | } |