Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
3c62d16ff8
|
|
@ -47,6 +47,50 @@
|
||||||
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,6 +312,18 @@ 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