添加字段

This commit is contained in:
he
2026-04-23 15:46:03 +08:00
parent af160e3c96
commit 6c929043c1
2 changed files with 56 additions and 0 deletions
@@ -312,6 +312,18 @@ namespace IRaCIS.Core.Application.Contracts
#endregion
/// <summary>
/// 是否存在空字符串字段(PatientSex、PatientWeight、RadionuclideTotalDose、RadionuclideHalfLife、RadiopharmaceuticalStartTime、AcquisitionTime 任意一个为空/空字符串)
/// </summary>
public bool IsHasEmptyPatientInfo =>
string.IsNullOrWhiteSpace(PatientSex) ||
string.IsNullOrWhiteSpace(PatientWeight) ||
string.IsNullOrWhiteSpace(RadionuclideTotalDose) ||
string.IsNullOrWhiteSpace(RadionuclideHalfLife) ||
string.IsNullOrWhiteSpace(RadiopharmaceuticalStartTime) ||
string.IsNullOrWhiteSpace(AcquisitionTime);
public List<DicomSeriesDTO> SeriesList { get; set; } = new List<DicomSeriesDTO>();
}