Authored by Amos_sdy

fixbug

... ... @@ -35,9 +35,9 @@ public class XWSendSMSServiceImpl implements ISendSMSService {
// private String smsUrl = "http://211.147.239.62:9050/cgi-bin/sendsms";
private String smsName = "nocrm";
private String smsName = "";
private String smsPwd = "1qa@WS";
private String smsPwd = "";
private int pageSize = 100000;
... ... @@ -57,6 +57,9 @@ public class XWSendSMSServiceImpl implements ISendSMSService {
if (StringUtils.equals(params.get("sendScene"), "GENERAL_SCENE")) {
smsName = "market";
smsPwd = "Market2017";
} else {
smsName = "nocrm";
smsPwd = "1qa@WS";
}
// 判断是否需要分页调用
... ...