|
@ -176,9 +176,10 @@ public class IcServiceRecordV2ServiceImpl extends BaseServiceImpl<IcServiceRecor |
|
|
SendSmsFormDTO sms = new SendSmsFormDTO(); |
|
|
SendSmsFormDTO sms = new SendSmsFormDTO(); |
|
|
sms.setCustomerId(customerId); |
|
|
sms.setCustomerId(customerId); |
|
|
sms.setMobile(serverInfoDTO.getMobile()); |
|
|
sms.setMobile(serverInfoDTO.getMobile()); |
|
|
sms.setAliyunTemplateCode(SmsTemplateConstant.COMMON_SMS_TEM); |
|
|
sms.setAliyunTemplateCode(SmsTemplateConstant.IC_SERVICE_TEM); |
|
|
Map<String, String> paramMap = new HashMap<>(); |
|
|
Map<String, String> paramMap = new HashMap<>(); |
|
|
paramMap.put("content", String.format("%s发起一个【%s】服务,请服务完成后尽快反馈,谢谢合作。", staffInfoCacheResult.getAgencyName(), serviceName)); |
|
|
paramMap.put("name",staffInfoCacheResult.getAgencyName()); |
|
|
|
|
|
paramMap.put("serviceName",serviceName); |
|
|
sms.setParamMap(paramMap); |
|
|
sms.setParamMap(paramMap); |
|
|
smsList.add(sms); |
|
|
smsList.add(sms); |
|
|
messageOpenFeignClient.sendMsg(smsList); |
|
|
messageOpenFeignClient.sendMsg(smsList); |
|
|