修改稽查

Test.EIImageViewer
{872297557@qq.com} 2022-12-30 09:22:14 +08:00
parent b81619d854
commit 9a430dfa0e
2 changed files with 6 additions and 6 deletions

View File

@ -185,17 +185,17 @@ namespace IRaCIS.Core.Domain.Models
public bool IsList { get; set; } public bool IsList { get; set; }
public string ListName { get; set; } = String.Empty; public string ListName { get; set; } = String.Empty;
public bool IsFixedColumn { get; set; } public bool IsFixedColumn { get; set; }
public string FixedColumnName { get; set; } = String.Empty; public string FixedColumnName { get; set; } = String.Empty;
public string ColumnName { get; set; } = String.Empty; public string ColumnName { get; set; } = String.Empty;
public string ColumnValue { get; set; } = String.Empty; public string ColumnValue { get; set; } = String.Empty;
public bool IsMerge { get; set; } public bool IsMerge { get; set; }
public string MergeColumnName { get; set; } = String.Empty; public string MergeColumnName { get; set; } = String.Empty;
public bool IsPicture { get; set; }
public bool IsNeedTransalate { get; set; }
public string TranslateDictionaryName { get; set; } = String.Empty;
} }
} }

View File

@ -235,7 +235,7 @@ namespace IRaCIS.Core.Domain.Models
public string Modalitys { get; set; } = "CT|MR|BoneScan|Photograph|PET|X-ray|US"; public string Modalitys { get; set; } = "CT|MRI|BoneScan|Photograph|PET|X-ray|US";
[NotMapped] [NotMapped]
public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList(); public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList();