Compare commits
2 Commits
1cf961c75d
...
8272dc71d5
Author | SHA1 | Date |
---|---|---|
|
8272dc71d5 | |
|
e01945f273 |
|
@ -591,6 +591,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public string OrderMarkName { get; set; } = string.Empty;
|
public string OrderMarkName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public Guid? MarkId { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class GetManualListInDto
|
public class GetManualListInDto
|
||||||
|
|
|
@ -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 liverSegmentation = await _dbContext.ReadingTableQuestionAnswer.Where(x => x.RowId == entity.RowId && x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.liverSegmentation).Select(x => x.Answer).FirstOrDefaultAsync();
|
||||||
|
|
||||||
var generalId=new Guid();
|
var generalId=new Guid();
|
||||||
if (entity.MarkId != null)
|
if (entity.MarkId != null)
|
||||||
{
|
{
|
||||||
generalId = entity.MarkId.Value;
|
generalId = entity.MarkId.Value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue