功能修改

This commit is contained in:
he
2026-04-22 09:49:10 +08:00
parent 3d83f18c71
commit ae5e9a75d6
7 changed files with 240 additions and 7 deletions
@@ -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();