mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-04 12:18:42 +08:00 
			
		
		
		
	短信接收报告回调处理小Bug
receiveSmsStatus() 方法中最后调用 updateSmsReceiveResult() 方法传参错误,第二个 result.getErrorCode() 应改为 result.getErrorMsg() Signed-off-by: Macro <8676847+hibernate2021@user.noreply.gitee.com>
This commit is contained in:
		@@ -180,7 +180,7 @@ public class SmsSendServiceImpl implements SmsSendService {
 | 
			
		||||
        }
 | 
			
		||||
        // 更新短信日志的接收结果. 因为量一般不大,所以先使用 for 循环更新
 | 
			
		||||
        receiveResults.forEach(result -> smsLogService.updateSmsReceiveResult(result.getLogId(),
 | 
			
		||||
                result.getSuccess(), result.getReceiveTime(), result.getErrorCode(), result.getErrorCode()));
 | 
			
		||||
                result.getSuccess(), result.getReceiveTime(), result.getErrorCode(), result.getErrorMsg()));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user