From 81d5de19e6697f16bbb03715cbf3d8d682a65111 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Thu, 18 Aug 2022 13:24:22 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E7=89=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Service/Reading/Dto/OrganInfoViewModel.cs | 56 ++++++++++++-------
.../Service/Reading/OrganInfoService.cs | 3 +-
2 files changed, 39 insertions(+), 20 deletions(-)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs
index 392d3cfe..a7ffc86d 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 be17dc58..4079c179 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,
};