diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index fa33a1f82..a79b6199f 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -5303,6 +5303,11 @@
只查询已经签名的临床数据
+
+
+ 是否查询所有的一致性分析临床数据 (为否只查询PDF)
+
+
获取访视列表
@@ -14129,13 +14134,20 @@
-
+
- 获取阅片临床数据列表
+ 获取阅片临床数据列表 (在任务列表)
+
+
+ 新增或修改一致性分析临床数据
+
+
+
+
获取单个阅片临床数据的所有文件
diff --git a/IRaCIS.Core.Application/Service/Management/DTO/UserFeedBackViewModel.cs b/IRaCIS.Core.Application/Service/Management/DTO/UserFeedBackViewModel.cs
index cb375a0db..14a6fcd70 100644
--- a/IRaCIS.Core.Application/Service/Management/DTO/UserFeedBackViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Management/DTO/UserFeedBackViewModel.cs
@@ -53,7 +53,7 @@ namespace IRaCIS.Core.Application.ViewModel
public UserTypeEnum? UserTypeEnum { get; set; }
- public string FeedBackKeyInfo { get; set; }
+ public string? FeedBackKeyInfo { get; set; }
public string? QuestionDescription { get; set; }
diff --git a/IRaCIS.Core.Application/Service/Management/UserFeedBackService.cs b/IRaCIS.Core.Application/Service/Management/UserFeedBackService.cs
index f24fd97c7..2f06b3fd0 100644
--- a/IRaCIS.Core.Application/Service/Management/UserFeedBackService.cs
+++ b/IRaCIS.Core.Application/Service/Management/UserFeedBackService.cs
@@ -48,10 +48,7 @@ namespace IRaCIS.Core.Application.Service
.ProjectTo(_mapper.ConfigurationProvider);
- var pageList = await userFeedBackQueryable
-
- .ToPagedListAsync(inQuery.PageIndex, inQuery.PageSize, string.IsNullOrWhiteSpace(inQuery.SortField) ? nameof(UserFeedBackView.Id) : inQuery.SortField,
- inQuery.Asc);
+ var pageList = await userFeedBackQueryable.ToPagedListAsync(inQuery.PageIndex, inQuery.PageSize, string.IsNullOrWhiteSpace(inQuery.SortField) ? nameof(UserFeedBackView.Id) : inQuery.SortField,inQuery.Asc);
return pageList;
}