|
@ -270,7 +270,7 @@ public class CreditLogService {
|
|
|
}
|
|
|
}
|
|
|
String response = null;
|
|
|
String url ="http://localhost:10051/svr-health-bank/" + "findAccount";
|
|
|
String url =getBaseUrl() + "findAccount";
|
|
|
object.put("patientIds",patientIds.toArray());
|
|
|
Map<String,String> params = new HashMap<>();
|
|
|
params.put("account",object.toJSONString());
|
|
@ -305,7 +305,7 @@ public class CreditLogService {
|
|
|
*/
|
|
|
public JSONObject selectByActivityRanking1(String activityId,String patientId,Integer page,Integer size){
|
|
|
String response = null;
|
|
|
String url ="http://localhost:10051/svr-health-bank/" + "selectByActivityRanking1";
|
|
|
String url =getBaseUrl() + "selectByActivityRanking1";
|
|
|
Map<String,String> params = new HashMap<>();
|
|
|
params.put("activityId",activityId);
|
|
|
params.put("patientId",patientId);
|
|
@ -566,7 +566,7 @@ public class CreditLogService {
|
|
|
object.put("idCard",patient.getIdcard());
|
|
|
object.put("openId",patient.getOpenid());
|
|
|
object.put("unionId",patient.getUnionid());
|
|
|
String url ="http://localhost:10051/svr-health-bank/" + "addStepIntegrate";
|
|
|
String url =getBaseUrl() + "addStepIntegrate";
|
|
|
Map<String,String> params = new HashMap<>();
|
|
|
params.put("creditsDetail",object.toJSONString());
|
|
|
try {
|