Test.EIImageViewer
he 2022-06-21 11:20:06 +08:00
parent bf50cdb1fd
commit 7973899aac
2 changed files with 5 additions and 1 deletions

View File

@ -174,7 +174,6 @@ namespace IRaCIS.Application.Services
}).ToList();
PageOutput<GetReadModuleDtoOut> pageOutput = new PageOutput<GetReadModuleDtoOut>()
{
PageSize = dto.PageSize,
CurrentPageData = getReadList,
PageIndex = dto.PageIndex,

View File

@ -141,5 +141,10 @@ namespace IRaCIS.Core.Domain.Models
/// 阅片状态
/// </summary>
public ReadingStatusEnum ReadingStatus { get; set; }
/// <summary>
/// 是否是基线
/// </summary>
public bool IsBaseLine { get; set; } = false;
}
}