添加字段
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user