Compare commits

...

2 Commits

Author SHA1 Message Date
he 8272dc71d5 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-07-15 16:21:14 +08:00
he e01945f273 修改 2025-07-15 16:21:12 +08:00
2 changed files with 3 additions and 1 deletions

View File

@ -591,6 +591,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string OrderMarkName { get; set; } = string.Empty;
public Guid? MarkId { get; set; }
}
public class GetManualListInDto

View File

@ -3317,7 +3317,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
var liverSegmentation = await _dbContext.ReadingTableQuestionAnswer.Where(x => x.RowId == entity.RowId && x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.liverSegmentation).Select(x => x.Answer).FirstOrDefaultAsync();
var generalId=new Guid();
if (entity.MarkId != null)
if (entity.MarkId != null)
{
generalId = entity.MarkId.Value;
}