Fix DM index error

This commit is contained in:
SwallowGG
2023-11-13 18:10:13 +08:00
parent 2e31890381
commit 9b6b564a19
3 changed files with 5 additions and 5 deletions

View File

@ -73,8 +73,7 @@ public class OperationSavedController {
OperationQueryParam param = new OperationQueryParam();
param.setId(id);
param.setUserId(ContextUtils.getUserId());
return operationService.queryExistent(param)
.map(operationWebConverter::dto2vo);
return operationService.queryExistent(param).map(operationWebConverter::dto2vo);
}
/**