Uat_Study
parent
707ecdb05f
commit
9a3c0fd1be
|
@ -75,6 +75,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public MedicalReviewDoctorUserIdea DoctorUserIdeaEnum { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 保存结论时间
|
||||
/// </summary>
|
||||
public DateTime? SaveConclusionTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否关闭对话
|
||||
/// </summary>
|
||||
public bool IsClosedDialog { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class FinishMedicalReviewInDto
|
||||
|
|
|
@ -432,7 +432,9 @@ namespace IRaCIS.Core.Application.Service
|
|||
FirstReplyTime = x.ReadingMedicalReviewDialogList.Min(x => x.CreateTime),
|
||||
LastReplyTime = x.ReadingMedicalReviewDialogList.Max(x => x.CreateTime),
|
||||
AuditAdviceEnum = x.AuditAdviceEnum,
|
||||
DoctorUserIdeaEnum = x.DoctorUserIdeaEnum
|
||||
DoctorUserIdeaEnum = x.DoctorUserIdeaEnum,
|
||||
SaveConclusionTime=x.SaveConclusionTime,
|
||||
IsClosedDialog=x.IsClosedDialog
|
||||
});
|
||||
|
||||
var result=await taskMedicalReviewquery.ToPagedListAsync(inDto.PageIndex, inDto.PageSize, inDto.SortField.IsNullOrEmpty() ? nameof(GetIRMedicalFeedbackListOutDto.AuditState) : inDto.SortField,
|
||||
|
|
Loading…
Reference in New Issue