Authored by caoyan

cps四期

@@ -48,7 +48,10 @@ public class SendSmsServiceImpl implements ISendSmsService { @@ -48,7 +48,10 @@ public class SendSmsServiceImpl implements ISendSmsService {
48 boArray[i] = smsBo; 48 boArray[i] = smsBo;
49 } 49 }
50 50
51 - serviceCaller.post("message.sendMessage", messageUrl + "/mcSMS/smsSendByMobile", boArray, CommonRspBO.class, null); 51 + String url = messageUrl + "/mcSMS/smsSendByMobile";
  52 + log.info("sendMessage url is {}", url);
  53 +
  54 + serviceCaller.post("message.sendMessage", url, boArray, CommonRspBO.class, null);
52 55
53 } 56 }
54 57