影像配置数据库字段添加
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-02-27 11:16:53 +08:00
parent 21626cda9d
commit a9c7c79fb5
4 changed files with 52 additions and 0 deletions
+37
View File
@@ -240,6 +240,25 @@ public partial class Trial : BaseFullDeleteAuditEntity
public string VitrualSiteCode { get; set; } = string.Empty;
#region
/// <summary>
/// 是否显示检查名称
/// </summary>
public bool IsShowStudyName { get; set; } = false;
/// <summary>
/// 检查名称列表
/// </summary>
public List<StudyName> StudyNameList { get; set; } = new List<StudyName>();
/// <summary>
/// 图像格式
/// </summary>
[StringLength(2000)]
public List<string> ImageFormatList { get; set; } = new List<string>();
#endregion
#region
[Comment("发件箱账号")]
public string EmailFromEmail { get; set; } = string.Empty;
@@ -290,6 +309,24 @@ public enum CollectImagesType
NoneDicom = 2
}
/// <summary>
/// 检查名称
/// </summary>
[ComplexType]
public class StudyName
{
/// <summary>
/// 是否选中
/// </summary>
public bool IsChoose { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
}
[ComplexType]
public class TrialObjectNameConfig
{