代码修改

IRC_NewDev
he 2023-09-19 14:43:48 +08:00
parent c97253cb5f
commit e62774bf9a
1 changed files with 1 additions and 2 deletions

View File

@ -1994,11 +1994,10 @@ namespace IRaCIS.Application.Services
//await _readingTableQuestionAnswerRepository.BatchDeleteNoTrackingAsync(x => x.RowId == (inDto.RowId ?? default(Guid)));
//await _readingTableAnswerRowInfoRepository.BatchDeleteNoTrackingAsync(x => x.Id == (inDto.RowId ?? default(Guid)));
_mapper.Map(inDto, rowInfo);
rowInfo.Id = inDto.RowId == null ? NewId.NextGuid() : inDto.RowId.Value;
result.RowId = rowInfo.Id;
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
if (inDto.RowId == null)
{