From c5a78ff231a82918f5e5097c5df0881adddf0cb6 Mon Sep 17 00:00:00 2001 From: lishuai <260038442@qq.com> Date: 星期四, 21 十二月 2023 14:10:13 +0800 Subject: [PATCH] 前后端对接,接口调整 --- server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java | 66 +++++++++++++++++++++++++++++++++ 1 files changed, 66 insertions(+), 0 deletions(-) diff --git a/server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java b/server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java index c639633..11507ce 100644 --- a/server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java +++ b/server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java @@ -455,6 +455,72 @@ saveInterfaceLog(body,result,path); return result; } + /** + * 鍒涘缓涓�鍗¢�氭潈闄愪笅杞戒换鍔� + * @param 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; + } + /** + * 鏌ヨ涓�鍗¢�氭潈闄愭煡璇㈣澶囬�氶亾鐨勪汉鍛樻潈闄愪笅杞借鎯呮�绘暟v2 + * @param body + * @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; + } + /** + * 鏌ヨ涓�鍗¢�氭潈闄愪笅杞戒换鍔¤繘搴� + * @param 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; + } + /** + * 涓�鍗¢�氭潈闄愪笅杞戒换鍔′腑娣诲姞鏁版嵁_鏍规嵁浜哄憳涓庤澶囬�氶亾鎸囧畾涓嬭浇 + * @param 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; + } + /** + * 涓�鍗¢�氬紑濮嬩笅杞戒换鍔� + * @param 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; + } + /** + * 鏌ヨ鏉冮檺鏉$洰鍒楄〃 + * @param body + * @return + */ + public static String authItemList(String body) { + Map<String, String> path = getPath(HKConstants.InterfacePath.authItemList); + String result = ArtemisHttpUtil.doPostStringArtemis(path, body, null, null, "application/json", null);// post璇锋眰application/json绫诲瀷鍙傛暟 + saveInterfaceLog(body,result,path); + return result; + } -- Gitblit v1.9.3