Merge branch 'Test.IRC' of http://192.168.3.69:3000/XCKJ/irc-netcore-api into Test.IRC
commit
c402878262
|
@ -812,9 +812,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string GroupName { get; set; }
|
public string GroupName { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分类算法
|
||||||
|
/// </summary>
|
||||||
|
public string ClassifyAlgorithms { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分类问题Id
|
||||||
|
/// </summary>
|
||||||
|
public Guid? ClassifyQuestionId { get; set; }
|
||||||
|
|
||||||
public Guid? GroupId { get; set; }
|
public Guid? GroupId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 全局阅片显示类型
|
/// 全局阅片显示类型
|
||||||
|
@ -1775,6 +1783,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public Guid? Id { get; set; }
|
public Guid? Id { get; set; }
|
||||||
|
|
||||||
public bool IsAdditional { get; set; }
|
public bool IsAdditional { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分类算法
|
||||||
|
/// </summary>
|
||||||
|
public string ClassifyAlgorithms { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分类问题Id
|
||||||
|
/// </summary>
|
||||||
|
public Guid? ClassifyQuestionId { get; set; }
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -2040,7 +2040,7 @@ namespace IRaCIS.Application.Services
|
||||||
rowInfo.Id = inDto.RowId == null ? NewId.NextGuid() : inDto.RowId.Value;
|
rowInfo.Id = inDto.RowId == null ? NewId.NextGuid() : inDto.RowId.Value;
|
||||||
result.RowId = rowInfo.Id;
|
result.RowId = rowInfo.Id;
|
||||||
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
|
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
|
||||||
rowInfo.FristAddTaskId = inDto.RowId == null ? rowInfo.Id : rowInfo.FristAddTaskId;
|
rowInfo.FristAddTaskId = inDto.RowId == null ? inDto.VisitTaskId : rowInfo.FristAddTaskId;
|
||||||
if (inDto.RowId == null)
|
if (inDto.RowId == null)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -886,10 +886,17 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
|
|
||||||
List<QuestionMark?> needCopyMarks = new List<QuestionMark?>()
|
List<QuestionMark?> needCopyMarks = new List<QuestionMark?>()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
QuestionMark.IsLymph,
|
||||||
|
QuestionMark.Lesion,
|
||||||
|
QuestionMark.Organ,
|
||||||
|
QuestionMark.Location,
|
||||||
|
QuestionMark.Part,
|
||||||
|
|
||||||
QuestionMark.LowPPDLDi,
|
QuestionMark.LowPPDLDi,
|
||||||
QuestionMark.LowPPDSDi,
|
QuestionMark.LowPPDSDi,
|
||||||
QuestionMark.NadirPPD,
|
QuestionMark.NadirPPD,
|
||||||
QuestionMark.LowPPDVisit,
|
QuestionMark.LowPPDVisit,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -951,6 +958,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
VisitTaskId= visitTaskId,
|
VisitTaskId= visitTaskId,
|
||||||
FirstAddTaskId=x.FirstAddTaskId,
|
FirstAddTaskId=x.FirstAddTaskId,
|
||||||
QuestionId=x.QuestionId,
|
QuestionId=x.QuestionId,
|
||||||
|
QuestionType=x.QuestionType,
|
||||||
|
|
||||||
|
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|
|
@ -252,9 +252,19 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public string GroupEnName { get; set; } = string.Empty;
|
public string GroupEnName { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否复制病灶
|
/// 分类算法
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsCopyLesions { get; set; } = false;
|
public string ClassifyAlgorithms { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分类问题Id
|
||||||
|
/// </summary>
|
||||||
|
public Guid? ClassifyQuestionId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否复制病灶
|
||||||
|
/// </summary>
|
||||||
|
public bool IsCopyLesions { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 分组ID
|
/// 分组ID
|
||||||
|
|
Loading…
Reference in New Issue