Uat_Study
he 2023-01-12 14:16:36 +08:00
parent 07f7a420f3
commit 99d681bde5
3 changed files with 38 additions and 10 deletions

View File

@ -289,11 +289,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public string CalculateQuestions { get; set; } = "[]"; public string CalculateQuestions { get; set; } = "[]";
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// 数值类型 /// 数值类型
/// </summary> /// </summary>
@ -304,6 +299,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ValueUnit? Unit { get; set; } public ValueUnit? Unit { get; set; }
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// 自定义单位 /// 自定义单位
/// </summary> /// </summary>
@ -393,6 +393,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 单位 /// 单位
/// </summary> /// </summary>
public ValueUnit? Unit { get; set; } public ValueUnit? Unit { get; set; }
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
public Guid? Id { get; set; } public Guid? Id { get; set; }
public Guid ReadingQuestionId { get; set; } public Guid ReadingQuestionId { get; set; }
public string Type { get; set; } = string.Empty; public string Type { get; set; } = string.Empty;
@ -888,6 +893,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ValueUnit? Unit { get; set; } public ValueUnit? Unit { get; set; }
/// <summary> /// <summary>
/// 自定义单位 /// 自定义单位
/// </summary> /// </summary>
@ -946,6 +952,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ValueUnit? Unit { get; set; } public ValueUnit? Unit { get; set; }
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// Id /// Id
/// </summary> /// </summary>
@ -1412,6 +1423,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ValueOfType? ValueType { get; set; } public ValueOfType? ValueType { get; set; }
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// 数据来源 /// 数据来源
/// </summary> /// </summary>
@ -1422,6 +1438,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ValueUnit? Unit { get; set; } public ValueUnit? Unit { get; set; }
/// <summary> /// <summary>
/// 全局阅片显示类型 /// 全局阅片显示类型
/// </summary> /// </summary>
@ -1699,6 +1716,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public LesionType? LesionType { get; set; } public LesionType? LesionType { get; set; }
/// <summary> /// <summary>
/// 问题类型 /// 问题类型
/// </summary> /// </summary>
@ -1730,6 +1748,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ValueUnit? Unit { get; set; } public ValueUnit? Unit { get; set; }
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// 自定义单位 /// 自定义单位
/// </summary> /// </summary>
@ -1745,11 +1768,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public string CalculateQuestions { get; set; } = "[]"; public string CalculateQuestions { get; set; } = "[]";
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// 问题英文名称 /// 问题英文名称
/// </summary> /// </summary>

View File

@ -171,6 +171,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary> /// </summary>
public string GroupEnName { get; set; } = string.Empty; public string GroupEnName { get; set; } = string.Empty;
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
/// <summary> /// <summary>
/// 数据来源 /// 数据来源

View File

@ -158,6 +158,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary> /// </summary>
public DataSources DataSource { get; set; } = DataSources.ManualEntry; public DataSources DataSource { get; set; } = DataSources.ManualEntry;
/// <summary>
/// 限制编辑
/// </summary>
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
[ForeignKey("DependParentId")] [ForeignKey("DependParentId")]
[JsonIgnore] [JsonIgnore]
public ReadingTableQuestionSystem DependParentQuestion { get; set; } public ReadingTableQuestionSystem DependParentQuestion { get; set; }