This commit is contained in:
he
2023-05-19 13:59:42 +08:00
parent 8a1a07980d
commit 919a6c7028
5 changed files with 27 additions and 9 deletions
@@ -137,7 +137,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public decimal FristAddTaskNum { get; set; }
public ReportLayType ReportLayType { get; set; } = ReportLayType.Group;
public string ReportMark { get; set; } = string.Empty;
/// <summary>
/// 问题英文分组
@@ -574,6 +576,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public Guid CreateUserId { get; set; }
public int? NumberOfFrames { get; set; }
@@ -596,6 +599,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string FromMark { get; set; } = string.Empty;
public string ReportMark { get; set; } = string.Empty;
public string RowMark { get; set; } = string.Empty;
}
@@ -1741,10 +1746,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string FromMark { get; set; } = string.Empty;
/// <summary>
/// 标记工具
/// </summary>
public string MarkTool { get; set; } = string.Empty;
public string ReportMark { get; set; } = string.Empty;
/// <summary>
/// 标记工具
/// </summary>
public string MarkTool { get; set; } = string.Empty;
public decimal RowIndex { get; set; }
@@ -1914,7 +1914,9 @@ namespace IRaCIS.Application.Services
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
rowInfo.NumberOfFrames = inDto.NumberOfFrames;
rowInfo.MarkTool = inDto.MarkTool;
rowInfo.FristAddTaskNum = taskinfo.VisitTaskNum;
rowInfo.ReportMark = inDto.ReportMark;
rowInfo.FristAddTaskNum = taskinfo.VisitTaskNum;
rowInfo.FristAddTaskId = inDto.VisitTaskId;
rowInfo.PicturePath = inDto.PicturePath;
rowInfo.RowIndex = inDto.RowIndex;
@@ -1975,6 +1977,7 @@ namespace IRaCIS.Application.Services
VisitTaskId = rowInfo.VisitTaskId,
StudyId = rowInfo.StudyId,
IsCanEditPosition = rowInfo.IsCanEditPosition,
ReportMark = rowInfo.ReportMark
}) ;