diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs index 392d3cfe6..a7ffc86dc 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs @@ -51,29 +51,37 @@ namespace IRaCIS.Core.Application.ViewModel /// OrganInfoView 列表视图模型 public class OrganInfoView { - public Guid Id { get; set; } - public string Part { get; set; } - public string TULOC { get; set; } - public string TULAT { get; set; } - - public DateTime CreateTime { get; set; } /// - /// 备注 - /// - public string Remark { get; set; } - public Guid CreateUserId { get; set; } + /// 部位 + /// + public string Part { get; set; } + + /// + /// TULOC + /// + public string TULOC { get; set; } + + /// + /// 位置 + /// + public string TULAT { get; set; } + + /// + /// 备注 + /// + public string Remark { get; set; } + + + /// + /// 是否是淋巴结 + /// + public bool IsLymphNodes { get; set; } /// /// 病灶类型 /// public LesionType LesionType { get; set; } - - - /// - /// 是否关联 - /// - public IsDepend IsDepend { get; set; } } public class GetTrialSelectOrganListInDto @@ -136,10 +144,20 @@ namespace IRaCIS.Core.Application.ViewModel /// public LesionType LesionType { get; set; } + + + /// - /// 备注 - /// - public string? Remark { get; set; } + /// 备注 + /// + public string Remark { get; set; } + + + /// + /// 是否是淋巴结 + /// + public bool IsLymphNodes { get; set; } + } ///OrganInfoQuery 列表查询参数模型 diff --git a/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs b/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs index be17dc58f..4079c179c 100644 --- a/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs +++ b/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs @@ -184,7 +184,8 @@ namespace IRaCIS.Core.Application.Service TULAT = data.TULAT, TULOC = data.TULOC, Remark= data.Remark, - + IsLymphNodes = data.IsLymphNodes, + IsEnable= trialData.IsEnable, LesionType= trialData.LesionType, };