代码映射修改

Test_IRC_Net10
he 2026-04-22 14:30:06 +08:00
parent dee2cae126
commit 01f339cb41
2 changed files with 3 additions and 3 deletions

View File

@ -196,7 +196,7 @@ namespace IRaCIS.Core.Application.Contracts
public class EditPatientInfoCommand
{
public Guid StudyId { get; set; }
public Guid Id { get; set; }
/// <summary>
/// 性别
/// </summary>
@ -236,7 +236,7 @@ namespace IRaCIS.Core.Application.Contracts
public class PatientInfoDto
{
public Guid StudyId { get; set; }
public Guid Id { get; set; }
/// <summary>
/// 性别

View File

@ -198,7 +198,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
[HttpPost]
public async Task<IResponseOutput> EditPatientInfo(EditPatientInfoCommand command)
{
await _dicomStudyRepository.UpdatePartialFromQueryAsync(command.StudyId, x => new DicomStudy
await _dicomStudyRepository.UpdatePartialFromQueryAsync(command.Id, x => new DicomStudy
{
PatientSex = command.PatientSex,
PatientWeight = command.PatientWeight,