throw 出异常,错误信息填充到返回的msg里

EtTerminalResVo terminalResVo = iDerviceInfoService.getEtTerminalInfoBySerialNo(signVo.getSerialNo());
log.info("根据设备序列号,获取终端信息,耗时[{}]毫秒",System.currentTimeMillis()-startTime3);
if(terminalResVo==null){
log.error("请先配置终端信息,再进行健康码核验!terminalResVo==null,serialNo[{}]",signVo.getSerialNo());
throw new BusinessException(ConstCode.FAILED.getCode(),"请先配置终端信息,再进行健康码核验!");
}
if(StringUtils.isEmpty(terminalResVo.getContactsQrCode())){
log.error("请先配置终端信息,再进行健康码核验!terminalResVo==null,serialNo[{}]",signVo.getSerialNo());
throw new BusinessException(ConstCode.FAILED.getCode(),"请先维护终端负责人健康码,再进行健康码核验!");
}


没有BusinessException,换成Exception 有同样的效果

@Slf4j  log注解
posted @ 2022-04-01 17:35  了悟  阅读(183)  评论(0编辑  收藏  举报