From 7069a17d8ee0404220f8e1e750c92180ad420cd6 Mon Sep 17 00:00:00 2001
From: hang <872297557@qq.com>
Date: Thu, 1 Aug 2024 13:31:53 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=82=E6=95=B0=E5=BF=85?=
=?UTF-8?q?=E4=BC=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../IRaCIS.Core.Application.xml | 16 ++++++++++++++--
.../Management/DTO/UserFeedBackViewModel.cs | 2 +-
.../Service/Management/UserFeedBackService.cs | 5 +----
3 files changed, 16 insertions(+), 7 deletions(-)
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;
}