Compare commits
No commits in common. "3716ad2f620ed3e6152ea0ae18ba9765c26c7405" and "3888b6f5d2819d714684ec4ed03bc0ccefc6f4b8" have entirely different histories.
3716ad2f62
...
3888b6f5d2
|
|
@ -47,50 +47,6 @@
|
||||||
public DateTime UpdateTime { get; set; }
|
public DateTime UpdateTime { get; set; }
|
||||||
public Guid CreateUserId { get; set; }
|
public Guid CreateUserId { get; set; }
|
||||||
public DateTime CreateTime { get; set; }
|
public DateTime CreateTime { get; set; }
|
||||||
|
|
||||||
#region 核验
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 体重
|
|
||||||
/// </summary>
|
|
||||||
public string PatientWeight { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 总剂量
|
|
||||||
/// </summary>
|
|
||||||
public string RadionuclideTotalDose { get; set; } = null!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 半衰期
|
|
||||||
/// </summary>
|
|
||||||
public string RadionuclideHalfLife { get; set; } = null!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 注射时间
|
|
||||||
/// </summary>
|
|
||||||
public string RadiopharmaceuticalStartTime { get; set; } = null!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 成像 / 采集时间
|
|
||||||
/// </summary>
|
|
||||||
public string AcquisitionTime { get; set; } = null!;
|
|
||||||
|
|
||||||
|
|
||||||
#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 class RelationVisitDTO
|
public class RelationVisitDTO
|
||||||
|
|
|
||||||
|
|
@ -312,18 +312,6 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
#endregion
|
#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>();
|
public List<DicomSeriesDTO> SeriesList { get; set; } = new List<DicomSeriesDTO>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue