|
|
|
@ -93,16 +93,16 @@ public class AutonomousSqServiceImpl implements AutonomousSqService { |
|
|
|
|
InvoiceAllLoginResult invoiceAllLoginResult = invoiceAllLoginResultMapper.findByQqlsh(invoiceAllSubmitNoteDTO.getTraceno()); |
|
|
|
|
if (invoiceAllLoginResult == null) { |
|
|
|
|
log.info("获取短信验证结果入口,未查询到该流水号相关信息,请确认后输入"); |
|
|
|
|
return AjaxResult.error("未查询到该流水号相关信息,请确认后输入"); |
|
|
|
|
return AjaxResult.success("未查询到该流水号相关信息,请确认后输入"); |
|
|
|
|
} |
|
|
|
|
if ("SMS".equals(invoiceAllLoginResult.getCode())) { |
|
|
|
|
return AjaxResult.error("10010"); |
|
|
|
|
return AjaxResult.success("10010"); |
|
|
|
|
} else if ("F000".equals(invoiceAllLoginResult.getCode())) { |
|
|
|
|
return AjaxResult.error("10011"); |
|
|
|
|
return AjaxResult.success("10011"); |
|
|
|
|
} else if ("SOOO".equals(invoiceAllLoginResult.getCode())) { |
|
|
|
|
return AjaxResult.error("10012"); |
|
|
|
|
return AjaxResult.success("10012"); |
|
|
|
|
} else { |
|
|
|
|
return AjaxResult.error("10013"); |
|
|
|
|
return AjaxResult.success("10013"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|