修改一版
parent
9231e6f820
commit
38229a8972
|
@ -103,6 +103,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
|
|
||||||
public string CreateUserName { get; set; }
|
public string CreateUserName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片路径
|
||||||
|
/// </summary>
|
||||||
|
public string ImagePath { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class GetMedicalReviewDialogInDto
|
public class GetMedicalReviewDialogInDto
|
||||||
|
|
|
@ -271,6 +271,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
Questioning=inDto.Questioning,
|
Questioning=inDto.Questioning,
|
||||||
VisitTaskId= visitTaskId,
|
VisitTaskId= visitTaskId,
|
||||||
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
|
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
|
||||||
|
ImagePath= ImagePath,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -340,7 +341,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
x.IsCurrentUser = x.CreateUserId == _userInfo.Id;
|
x.IsCurrentUser = x.CreateUserId == _userInfo.Id;
|
||||||
});
|
});
|
||||||
return (result,new {
|
return (result,new {
|
||||||
taskMedicalReview.ImagePath,
|
|
||||||
taskMedicalReview.IsClosedDialog,
|
taskMedicalReview.IsClosedDialog,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,6 +84,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
[ForeignKey("CreateUserId")]
|
[ForeignKey("CreateUserId")]
|
||||||
public User CreateUser { get; set; }
|
public User CreateUser { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片路径
|
||||||
|
/// </summary>
|
||||||
|
public string ImagePath { get; set; } = string.Empty;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue