Test.EIImageViewer
parent
4388dbd547
commit
8f2a8a301d
|
@ -56,6 +56,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// 依赖父问题
|
||||
/// </summary>
|
||||
public Guid? DependParentId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题标识
|
||||
/// </summary>
|
||||
public QuestionMark? QuestionMark { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
@ -111,6 +116,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public Guid SystemCriterionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题标识
|
||||
/// </summary>
|
||||
public QuestionMark? QuestionMark { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -448,6 +458,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// 病灶类型
|
||||
/// </summary>
|
||||
public LesionType? LesionType { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public QuestionType? QuestionType { get; set; }
|
||||
}
|
||||
|
||||
public class ReadingQuestionSystemView
|
||||
|
@ -553,6 +569,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// 病灶类型
|
||||
/// </summary>
|
||||
public LesionType? LesionType { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public QuestionType? QuestionType { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
@ -835,6 +857,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// 病灶类型
|
||||
/// </summary>
|
||||
public LesionType? LesionType { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public QuestionType? QuestionType { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
@ -949,6 +977,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// 病灶类型
|
||||
/// </summary>
|
||||
public LesionType? LesionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public QuestionType? QuestionType { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -760,7 +760,7 @@ namespace IRaCIS.Application.Services
|
|||
|
||||
|
||||
/// <summary>
|
||||
/// 添加系统qc问题标准
|
||||
/// 添加系统问题标准
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[NonDynamicMethod]
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 计划内访视
|
||||
/// </summary>
|
||||
InPlanSubjectVisit=0,
|
||||
InPlanSubjectVisit = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 计划外访视
|
||||
|
@ -42,7 +42,7 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// </summary>
|
||||
Oncology = 5,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public enum ReadingSetType
|
||||
|
@ -50,12 +50,12 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 影像阅片
|
||||
/// </summary>
|
||||
ImageReading=0,
|
||||
ImageReading = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 肿瘤阅片
|
||||
/// </summary>
|
||||
TumorReading=1,
|
||||
TumorReading = 1,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -66,12 +66,12 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 全部
|
||||
/// </summary>
|
||||
All=0,
|
||||
All = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 根据Site
|
||||
/// </summary>
|
||||
Site=1,
|
||||
Site = 1,
|
||||
}
|
||||
|
||||
|
||||
|
@ -86,7 +86,7 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 未生效
|
||||
/// </summary>
|
||||
NotTakeEffect=0,
|
||||
NotTakeEffect = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 已生效
|
||||
|
@ -96,7 +96,7 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 已撤销
|
||||
/// </summary>
|
||||
Revocation=2,
|
||||
Revocation = 2,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -107,12 +107,12 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// CRC
|
||||
/// </summary>
|
||||
CRC=0,
|
||||
CRC = 0,
|
||||
|
||||
/// <summary>
|
||||
/// PM
|
||||
/// </summary>
|
||||
PM=1,
|
||||
PM = 1,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -203,7 +203,7 @@ namespace IRaCIS.Core.Domain.Share
|
|||
/// <summary>
|
||||
/// 受试者
|
||||
/// </summary>
|
||||
[DisplayAttribute(Name ="受试者")]
|
||||
[DisplayAttribute(Name = "受试者")]
|
||||
Subject = 0,
|
||||
|
||||
/// <summary>
|
||||
|
@ -225,6 +225,15 @@ namespace IRaCIS.Core.Domain.Share
|
|||
OncologyRead = 3,
|
||||
}
|
||||
|
||||
public enum QuestionMark
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public enum QuestionType
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 裁判阅片问题类型
|
||||
/// </summary>
|
||||
|
|
|
@ -109,6 +109,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public LesionType? LesionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public QuestionType? QuestionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
|
|
|
@ -72,6 +72,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public LesionType? LesionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public QuestionType? QuestionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
|
|
|
@ -127,6 +127,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public Guid SystemCriterionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题标识
|
||||
/// </summary>
|
||||
public QuestionMark? QuestionMark { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -131,6 +131,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public Guid TrialCriterionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题标识
|
||||
/// </summary>
|
||||
public QuestionMark? QuestionMark { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue