Merge branch 'Test.IRC' of http://192.168.3.69:3000/XCKJ/irc-netcore-api into Test.IRC
commit
c402878262
|
@ -812,7 +812,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
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; }
|
||||
|
||||
|
@ -1775,6 +1783,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public Guid? Id { 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; }
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -2040,7 +2040,7 @@ namespace IRaCIS.Application.Services
|
|||
rowInfo.Id = inDto.RowId == null ? NewId.NextGuid() : inDto.RowId.Value;
|
||||
result.RowId = rowInfo.Id;
|
||||
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)
|
||||
{
|
||||
|
||||
|
|
|
@ -886,6 +886,13 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
|
||||
List<QuestionMark?> needCopyMarks = new List<QuestionMark?>()
|
||||
{
|
||||
|
||||
QuestionMark.IsLymph,
|
||||
QuestionMark.Lesion,
|
||||
QuestionMark.Organ,
|
||||
QuestionMark.Location,
|
||||
QuestionMark.Part,
|
||||
|
||||
QuestionMark.LowPPDLDi,
|
||||
QuestionMark.LowPPDSDi,
|
||||
QuestionMark.NadirPPD,
|
||||
|
@ -951,6 +958,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
VisitTaskId= visitTaskId,
|
||||
FirstAddTaskId=x.FirstAddTaskId,
|
||||
QuestionId=x.QuestionId,
|
||||
QuestionType=x.QuestionType,
|
||||
|
||||
|
||||
}).ToListAsync();
|
||||
|
|
|
@ -251,6 +251,16 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public string GroupEnName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 分类算法
|
||||
/// </summary>
|
||||
public string ClassifyAlgorithms { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 分类问题Id
|
||||
/// </summary>
|
||||
public Guid? ClassifyQuestionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否复制病灶
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue