修改一版

Uat_Study
he 2022-07-05 15:11:45 +08:00
parent 9231e6f820
commit 38229a8972
3 changed files with 14 additions and 1 deletions

View File

@ -103,6 +103,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string CreateUserName { get; set; }
/// <summary>
/// 图片路径
/// </summary>
public string ImagePath { get; set; } = string.Empty;
}
public class GetMedicalReviewDialogInDto

View File

@ -271,6 +271,7 @@ namespace IRaCIS.Core.Application.Service
Questioning=inDto.Questioning,
VisitTaskId= visitTaskId,
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
ImagePath= ImagePath,
});
}
@ -340,7 +341,7 @@ namespace IRaCIS.Core.Application.Service
x.IsCurrentUser = x.CreateUserId == _userInfo.Id;
});
return (result,new {
taskMedicalReview.ImagePath,
taskMedicalReview.IsClosedDialog,
});
}

View File

@ -84,6 +84,12 @@ namespace IRaCIS.Core.Domain.Models
[ForeignKey("CreateUserId")]
public User CreateUser { get; set; }
/// <summary>
/// 图片路径
/// </summary>
public string ImagePath { get; set; } = string.Empty;
}