Compare commits

...

2 Commits

Author SHA1 Message Date
he a1dc17c582 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
2026-04-22 14:30:08 +08:00
he 01f339cb41 代码映射修改 2026-04-22 14:30:06 +08:00
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,