feat(sj_1.0.0): 重试日志接口新增状态查询

This commit is contained in:
xlsea 2024-06-05 10:57:31 +08:00 committed by opensnail
parent 7fe706118b
commit 6d5a4c38d3
2 changed files with 3 additions and 0 deletions

View File

@ -19,4 +19,6 @@ public class RetryTaskLogQueryVO extends BaseQueryVO {
private String idempotentId;
private String uniqueId;
private Integer retryStatus;
}

View File

@ -55,6 +55,7 @@ public class RetryTaskLogServiceImpl implements RetryTaskLogService {
.eq(StrUtil.isNotBlank(queryVO.getBizNo()), RetryTaskLog::getBizNo, queryVO.getBizNo())
.eq(StrUtil.isNotBlank(queryVO.getUniqueId()), RetryTaskLog::getUniqueId, queryVO.getUniqueId())
.eq(StrUtil.isNotBlank(queryVO.getIdempotentId()), RetryTaskLog::getIdempotentId, queryVO.getIdempotentId())
.eq(queryVO.getRetryStatus() != null, RetryTaskLog::getRetryStatus, queryVO.getRetryStatus())
.select(RetryTaskLog::getGroupName, RetryTaskLog::getId,
RetryTaskLog::getSceneName,
RetryTaskLog::getIdempotentId, RetryTaskLog::getBizNo, RetryTaskLog::getRetryStatus,