|
|
@@ -3,6 +3,8 @@ package thyyxxk.webserver.service.externalhttp;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.dtflys.forest.annotation.JSONBody;
|
|
|
import com.dtflys.forest.annotation.Post;
|
|
|
+import com.dtflys.forest.callback.OnError;
|
|
|
+import com.dtflys.forest.callback.OnSuccess;
|
|
|
import thyyxxk.webserver.entity.vo.DrgGroupTestVO;
|
|
|
|
|
|
/**
|
|
|
@@ -18,8 +20,8 @@ public interface DrgWebServices {
|
|
|
@Post(url = "http://172.16.32.126:8080/drg_web/drgGroupThird/V2/setListDrg.action")
|
|
|
JSONObject drgQuality(@JSONBody JSONObject obj);
|
|
|
|
|
|
- @Post(url = "http://172.16.32.126:8082/etlClient/callHisData.action")
|
|
|
- JSONObject etlClient(@JSONBody JSONObject obj);
|
|
|
+ @Post(url = "http://172.16.32.126:8082/etlClient/callHisData.action", async = true)
|
|
|
+ void etlClient(@JSONBody JSONObject obj);
|
|
|
|
|
|
@Post(url = "http://172.16.32.126:8080/drg_web/drgGroupThird/getAllDrgResults.action")
|
|
|
JSONObject getDrgCaseQualityControlGroup(@JSONBody JSONObject obj);
|