From ad3dae4fcdb1e86f5fff6a0307ef8b390a7a6cab Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 31 Oct 2024 13:51:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=94=E5=9B=9ELatestReplyUserFullName?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/IRaCIS.Core.Application.xml | 10 ++++++++++ .../Service/QC/DTO/QCListViewModel.cs | 3 ++- IRaCIS.Core.Application/Service/QC/_MapConfig.cs | 4 +++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 75e76a713..dc9ae2fd2 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -803,6 +803,16 @@ + + + 一致性分析结果导出 9 10 分别是自身 和组件一致性 + + + + + + + 获取阅片标准可以导出的列表 diff --git a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs index 5c387a97f..d75222599 100644 --- a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs +++ b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs @@ -288,6 +288,7 @@ namespace IRaCIS.Core.Application.Contracts public string CreateUserName { get; set; } = String.Empty; public DateTime? LatestMsgTime { get; set; } + public string LatestReplyUserFullName { get; set; } = String.Empty; public string LatestReplyUserName { get; set; } = String.Empty; @@ -1716,7 +1717,7 @@ namespace IRaCIS.Core.Application.Contracts public Guid LatestReplyUserId { get; set; } - + public string LatestReplyUserFullName { get; set; } = String.Empty; public string LatestReplyUserName { get; set; } = String.Empty; public string Content { get; set; } = string.Empty; diff --git a/IRaCIS.Core.Application/Service/QC/_MapConfig.cs b/IRaCIS.Core.Application/Service/QC/_MapConfig.cs index 186f8fdf0..1a5314382 100644 --- a/IRaCIS.Core.Application/Service/QC/_MapConfig.cs +++ b/IRaCIS.Core.Application/Service/QC/_MapConfig.cs @@ -58,7 +58,7 @@ namespace IRaCIS.Core.Application.Service .ForMember(d => d.CreateUserName, u => u.MapFrom(s => s.CreateUser.UserName)) .ForMember(d => d.LatestReplyUserName, u => u.MapFrom(t => t.LatestReplyUser.UserName)) - + .ForMember(d => d.LatestReplyUserFullName, u => u.MapFrom(t => t.LatestReplyUser.FullName)) .ForMember(d => d.DialogList, u => u.MapFrom(t => t.DialogList)) //.ForMember(d => d.DialogStr, u => u.MapFrom(t => string.Join("\n\n", t.DialogList.OrderBy(t => t.CreateTime) @@ -658,6 +658,8 @@ namespace IRaCIS.Core.Application.Service .ForMember(d => d.IsQCConfirmedReupload, u => u.MapFrom(s => s.SubjectVisit.IsQCConfirmedReupload)) .ForMember(d => d.CreateUserName, u => u.MapFrom(s => s.CreateUser.UserName)) .ForMember(d => d.LatestReplyUserName, u => u.MapFrom(t => t.LatestReplyUser.UserName)) + .ForMember(d => d.LatestReplyUserFullName, u => u.MapFrom(t => t.LatestReplyUser.FullName)) + .ForMember(d => d.ChallengeCode, u => u.MapFrom(s => s.ChallengeCode)); //排序的时候有坑 把这个带到sql 中去了 //.AfterMap((src, dest) => dest.ChallengeCode = "Q" + src.ChallengeCode.ToString("D5"));//实测没有效果