功能修改
This commit is contained in:
@@ -276,6 +276,42 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
|
||||
public string BodyPartForEditOther { get; set; }
|
||||
|
||||
|
||||
#region 核验
|
||||
|
||||
/// <summary>
|
||||
/// 性别
|
||||
/// </summary>
|
||||
public string PatientSex { get; set; } = null!;
|
||||
|
||||
/// <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
|
||||
|
||||
public List<DicomSeriesDTO> SeriesList { get; set; } = new List<DicomSeriesDTO>();
|
||||
}
|
||||
|
||||
|
||||
@@ -589,7 +589,14 @@ namespace IRaCIS.Core.Application.Services
|
||||
StudyId = k.Id,
|
||||
|
||||
BodyPartForEdit = k.BodyPartForEdit,
|
||||
BodyPartForEditOther = k.BodyPartForEditOther
|
||||
BodyPartForEditOther = k.BodyPartForEditOther,
|
||||
PatientSex=k.PatientSex,
|
||||
PatientWeight=k.PatientWeight,
|
||||
RadionuclideTotalDose=k.RadionuclideTotalDose,
|
||||
RadionuclideHalfLife=k.RadionuclideHalfLife,
|
||||
RadiopharmaceuticalStartTime=k.RadiopharmaceuticalStartTime,
|
||||
AcquisitionTime= k.AcquisitionTime,
|
||||
|
||||
|
||||
|
||||
}).ToListAsync();
|
||||
|
||||
Reference in New Issue
Block a user