字符串默认值+数据库统一维护
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
243fae4b19
commit
7fee1abdb5
|
@ -306,8 +306,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public decimal FristAddTaskNum { get; set; }
|
public decimal FristAddTaskNum { get; set; }
|
||||||
|
|
||||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
public string OtherMeasureData { get; set; } = string.Empty;
|
||||||
public string MeasureData { get; set; }
|
public string MeasureData { get; set; } = string.Empty;
|
||||||
|
|
||||||
public List<TableQuestionInfo> TableQuestionList { get; set; } = new List<TableQuestionInfo>();
|
public List<TableQuestionInfo> TableQuestionList { get; set; } = new List<TableQuestionInfo>();
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; }=string.Empty;
|
||||||
public Guid QuestionId { get; set; }
|
public Guid QuestionId { get; set; }
|
||||||
|
|
||||||
public Guid TableQuestionId { get; set; }
|
public Guid TableQuestionId { get; set; }
|
||||||
|
@ -1096,7 +1096,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public string MeasureData { get; set; }
|
public string MeasureData { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string? OtherMeasureData { get; set; }
|
public string OtherMeasureData { get; set; }
|
||||||
public int ShowOrder { get; set; }
|
public int ShowOrder { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
@ -1119,9 +1119,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? OtherStudyId { get; set; }
|
public Guid? OtherStudyId { get; set; }
|
||||||
|
|
||||||
public string? OtherMarkTool { get; set; }
|
public string OtherMarkTool { get; set; }
|
||||||
|
|
||||||
public string? OtherPicturePath { get; set; }
|
public string OtherPicturePath { get; set; }
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
|
|
||||||
|
@ -1187,7 +1187,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public QuestionType? QuestionType { get; set; }
|
public QuestionType? QuestionType { get; set; }
|
||||||
|
|
||||||
public string? OrderMarkName { get; set; } = string.Empty;
|
public string OrderMarkName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -1205,12 +1205,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? OtherStudyId { get; set; }
|
public Guid? OtherStudyId { get; set; }
|
||||||
|
|
||||||
public string? OtherMarkTool { get; set; }
|
public string OtherMarkTool { get; set; }
|
||||||
|
|
||||||
public string? OtherPicturePath { get; set; }
|
public string OtherPicturePath { get; set; }
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
public string OtherMeasureData { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
public class GetReadingQuestionAndAnswerInDto
|
public class GetReadingQuestionAndAnswerInDto
|
||||||
{
|
{
|
||||||
|
@ -1626,7 +1626,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 字典code
|
/// 字典code
|
||||||
|
@ -2165,14 +2165,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 标记工具
|
/// 标记工具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? MarkTool { get; set; }
|
public string MarkTool { get; set; }
|
||||||
|
|
||||||
public decimal RowIndex { get; set; }
|
public decimal RowIndex { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 截图地址
|
/// 截图地址
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? PicturePath { get; set; }
|
public string PicturePath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 任务Id
|
/// 任务Id
|
||||||
|
@ -2184,9 +2184,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
public string? MeasureData { get; set; }
|
public string MeasureData { get; set; }
|
||||||
|
|
||||||
public string? OtherMeasureData { get; set; }
|
public string OtherMeasureData { get; set; }
|
||||||
|
|
||||||
public Guid? SeriesId { get; set; }
|
public Guid? SeriesId { get; set; }
|
||||||
|
|
||||||
|
@ -2212,7 +2212,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public decimal? WL { get; set; }
|
public decimal? WL { get; set; }
|
||||||
|
|
||||||
public string? BlindName { get; set; }
|
public string BlindName { get; set; }
|
||||||
|
|
||||||
public bool IsDicomReading { get; set; } = true;
|
public bool IsDicomReading { get; set; } = true;
|
||||||
|
|
||||||
|
@ -2232,9 +2232,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? OtherStudyId { get; set; }
|
public Guid? OtherStudyId { get; set; }
|
||||||
|
|
||||||
public string? OtherMarkTool { get; set; }
|
public string OtherMarkTool { get; set; }
|
||||||
|
|
||||||
public string? OtherPicturePath { get; set; }
|
public string OtherPicturePath { get; set; }
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -383,7 +383,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; }=string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 自定义单位
|
/// 自定义单位
|
||||||
|
@ -507,7 +507,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
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;
|
||||||
|
@ -1080,7 +1080,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数据来源
|
/// 数据来源
|
||||||
|
@ -1159,7 +1159,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id
|
/// Id
|
||||||
|
@ -1680,7 +1680,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; }=string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数据来源
|
/// 数据来源
|
||||||
|
@ -2076,7 +2076,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 自定义单位
|
/// 自定义单位
|
||||||
|
|
|
@ -273,7 +273,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 分组分类
|
/// 分组分类
|
||||||
|
|
|
@ -286,12 +286,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; }
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否显示在Dicom阅片中
|
/// 是否显示在Dicom阅片中
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsShowInDicom { get; set; } = false;
|
public bool IsShowInDicom { get; set; } = false;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -196,7 +196,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件类型
|
/// 文件类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? FileType { get; set; } = string.Empty;
|
public string FileType { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题分类
|
/// 问题分类
|
||||||
|
|
|
@ -68,9 +68,9 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public Guid? OtherStudyId { get; set; }
|
public Guid? OtherStudyId { get; set; }
|
||||||
|
|
||||||
public string? OtherMarkTool { get; set; }
|
public string OtherMarkTool { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string? OtherPicturePath { get; set; }
|
public string OtherPicturePath { get; set; } = string.Empty;
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
public string OtherMeasureData { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
//病灶编号
|
//病灶编号
|
||||||
|
|
|
@ -52,7 +52,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public QuestionType? QuestionType { get; set; }
|
public QuestionType? QuestionType { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public string? OrderMarkName { get; set; } = string.Empty;
|
public string OrderMarkName { get; set; } = string.Empty;
|
||||||
|
|
||||||
public Guid? OtherInstanceId { get; set; }
|
public Guid? OtherInstanceId { get; set; }
|
||||||
|
|
||||||
|
@ -60,12 +60,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public Guid? OtherStudyId { get; set; }
|
public Guid? OtherStudyId { get; set; }
|
||||||
|
|
||||||
public string? OtherMarkTool { get; set; } = string.Empty;
|
public string OtherMarkTool { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string? OtherPicturePath { get; set; } = string.Empty;
|
public string OtherPicturePath { get; set; } = string.Empty;
|
||||||
|
|
||||||
public int? OtherNumberOfFrames { get; set; }
|
public int? OtherNumberOfFrames { get; set; }
|
||||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
public string OtherMeasureData { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue