From 7973899aacd0783da0851617012ad6b238c39ee2 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Tue, 21 Jun 2022 11:20:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Reading/ReadModuleService.cs | 1 - IRaCIS.Core.Domain/Reading/View/ReadModuleView.cs | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ReadModuleService.cs b/IRaCIS.Core.Application/Service/Reading/ReadModuleService.cs index 05dfad0d..cd53c4b0 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadModuleService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadModuleService.cs @@ -174,7 +174,6 @@ namespace IRaCIS.Application.Services }).ToList(); PageOutput pageOutput = new PageOutput() { - PageSize = dto.PageSize, CurrentPageData = getReadList, PageIndex = dto.PageIndex, diff --git a/IRaCIS.Core.Domain/Reading/View/ReadModuleView.cs b/IRaCIS.Core.Domain/Reading/View/ReadModuleView.cs index 2c846f6f..f2f64da9 100644 --- a/IRaCIS.Core.Domain/Reading/View/ReadModuleView.cs +++ b/IRaCIS.Core.Domain/Reading/View/ReadModuleView.cs @@ -141,5 +141,10 @@ namespace IRaCIS.Core.Domain.Models /// 阅片状态 /// public ReadingStatusEnum ReadingStatus { get; set; } + + /// + /// 是否是基线 + /// + public bool IsBaseLine { get; set; } = false; } }