|
@@ -82,6 +82,9 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
@Autowired
|
|
@Autowired
|
|
|
ISmsCheckTaskService iSmsCheckTaskService;
|
|
ISmsCheckTaskService iSmsCheckTaskService;
|
|
|
|
|
|
|
|
|
|
+ @Value("${special.email.audit.account}")
|
|
|
|
|
+ private String emailAccountSpecial;
|
|
|
|
|
+
|
|
|
|
|
|
|
|
@ApiOperation(value = "客户资料-信息查询查询", notes = "客户资料-个人列表查询")
|
|
@ApiOperation(value = "客户资料-信息查询查询", notes = "客户资料-个人列表查询")
|
|
|
@PostMapping(value = "/find/user/id")
|
|
@PostMapping(value = "/find/user/id")
|
|
@@ -217,12 +220,12 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
// 发送邮件
|
|
// 发送邮件
|
|
|
EmailSendMsgHandle emailSendMsgHandle = new EmailSendMsgHandle();
|
|
EmailSendMsgHandle emailSendMsgHandle = new EmailSendMsgHandle();
|
|
|
//liutt3.bj@chinatelecom.cn
|
|
//liutt3.bj@chinatelecom.cn
|
|
|
- /* emailSendMsgHandle.SendMsg("liutt3.bj@chinatelecom.cn",
|
|
|
|
|
|
|
+ emailSendMsgHandle.SendMsg(emailAccountSpecial,
|
|
|
customerInfo.getCreateBy() +
|
|
customerInfo.getCreateBy() +
|
|
|
"提交复开申请", "工号:" + customerInfo.getStaffNo() +
|
|
"提交复开申请", "工号:" + customerInfo.getStaffNo() +
|
|
|
" 工单创建人:" + customerInfo.getCreateBy() +
|
|
" 工单创建人:" + customerInfo.getCreateBy() +
|
|
|
" 提交了复开号码为" + customerInfo.getSmsNumber() +
|
|
" 提交了复开号码为" + customerInfo.getSmsNumber() +
|
|
|
- "的复开申请,请及时进行稽核。");*/
|
|
|
|
|
|
|
+ "的复开申请,请及时进行稽核。");
|
|
|
}
|
|
}
|
|
|
return Result.OK("已成功提交申请");
|
|
return Result.OK("已成功提交申请");
|
|
|
}
|
|
}
|