|
@@ -20,6 +20,9 @@ public class DataService {
|
|
|
private static String SAVE_REPORT_URL = "https://risserver3.pacsonline.cn/butt/saveReport";
|
|
|
|
|
|
private static String UPDATE_PATIENT_URL = "https://risserver3.pacsonline.cn/butt/saveExam";
|
|
|
+
|
|
|
+ private static String FEE_URL = "https://risserver3.pacsonline.cn/film/callback";
|
|
|
+
|
|
|
|
|
|
|
|
|
private static final OkHttpClient OKHTTP_CLIENT = new OkHttpClient();
|
|
@@ -60,6 +63,10 @@ public class DataService {
|
|
|
postWithParameters(UPDATE_PATIENT_URL, map);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public void fee(JSONObject jsonObject) {
|
|
|
+ postWithJson(FEE_URL, jsonObject);
|
|
|
+ }
|
|
|
|
|
|
public static String postWithParameters(String url, Map<String, String> map) {
|
|
|
|