From ade1b378ff2f0781be2fbc537b6c09237a50631a Mon Sep 17 00:00:00 2001 From: k94314517 <8417338+k94314517@user.noreply.gitee.com> Date: 星期二, 20 八月 2024 18:18:59 +0800 Subject: [PATCH] 代码初始化 --- server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java | 35 ++++++++++++++++++++++++++++++++--- 1 files changed, 32 insertions(+), 3 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java b/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java index b1ea5b6..f13409d 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java @@ -10,6 +10,7 @@ import com.hikvision.artemis.sdk.ArtemisHttpUtil; import com.hikvision.artemis.sdk.config.ArtemisConfig; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.tomcat.util.bcel.Const; @@ -335,6 +336,22 @@ return startDoPostStringArtemis(HKConstants.InterfacePath.visitAppiontment,body); } /** + * 璁垮棰勭害 + * @param body + * @return + */ + public static String iccmAppointment(String body) { + return startDoPostStringArtemis(HKConstants.InterfacePath.iccmAppointment,body); + } + /** + * 璁垮鍏嶇櫥璁伴绾� + * @param body + * @return + */ + public static String iccmAppointmentMDJ(String body) { + return startDoPostStringArtemis(HKConstants.InterfacePath.iccmAppointmentMDJ,body); + } + /** * 璁垮鍏嶇櫥璁伴绾� * @param body * @return @@ -510,6 +527,15 @@ public static String appointmentRecords(String body) { return startDoPostStringArtemis(HKConstants.InterfacePath.appointmentRecords,body); } + + /** + * 鑾峰彇璁垮棰勭害璁板綍鍒楄〃 iccm + * @param body + * @return + */ + public static String iccmAppointmentRecords(String body) { + return startDoPostStringArtemis(HKConstants.InterfacePath.iccmAppointmentRecords,body); + } /** * 鑾峰彇鍏ㄩ噺缁勭粐鍒楄〃 * @param body @@ -625,11 +651,14 @@ } /** * 鑾峰彇鏈堝彴鐘舵�� - * @param body * @return */ - public static String platformStatus(String body) { - return startDoPostStringArtemis(HKConstants.InterfacePath.platformStatus,body); + public static String platformStatus(String param) { + if(StringUtils.isNotBlank(param)){ + return startDoPostStringArtemis(HKConstants.InterfacePath.platformStatus+"?platformIds="+param,null); + }else{ + return startDoPostStringArtemis(HKConstants.InterfacePath.platformStatus,null); + } } /** * 鑾峰彇鏈堝彴缁勪欢閰嶇疆鐨凩ED璁惧娓呭崟 -- Gitblit v1.9.3