|
@@ -580,9 +580,15 @@ public class GyDataServiceImpl implements GyDataService {
|
|
|
GyUnitDO gyUnitDO = gyUnitDao.getGyUnitByCreditCode(importDTO.getGyUnitId());
|
|
|
log.error("=====================发送短信了===企业信息查询==="+gyUnitDO.toString());
|
|
|
if(Objects.nonNull(gyUnitDO)){
|
|
|
- log.error("=====================发送短信了======"+gyUnitDO.toString());
|
|
|
- messageService.importance(gyUnitDO.getDataSecurityWay()+","+gyUnitDO.getMobilePhone(),
|
|
|
- importDTO.getDataName());
|
|
|
+ try {
|
|
|
+ log.error("=====================发送短信了===start==="+gyUnitDO.toString());
|
|
|
+ messageService.importance(gyUnitDO.getDataSecurityWay()+","+gyUnitDO.getMobilePhone(),
|
|
|
+ importDTO.getDataName());
|
|
|
+ log.error("=====================发送短信了===end==="+gyUnitDO.toString());
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("=============messageService.importance=======error======="+e.getMessage());
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
}else {
|
|
|
log.error("=========企业的组织机构代码:"+importDTO.getGyUnitId()+",查询不到对应的企业信息===========");
|
|
|
}
|