From e6056623f80270b403ffa6f337711f18179549c9 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Wed, 12 Oct 2022 10:58:30 +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
---
.../Service/Reading/Dto/OrganInfoViewModel.cs | 61 +++++++++++++++++++
.../Service/Reading/OrganInfoService.cs | 3 +
IRaCIS.Core.Domain/Reading/OrganInfo.cs | 28 +++++++--
3 files changed, 86 insertions(+), 6 deletions(-)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs
index 65f8437a..7fb68db7 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/OrganInfoViewModel.cs
@@ -146,6 +146,27 @@ namespace IRaCIS.Core.Application.ViewModel
/// 器官类型
///
public OrganType OrganType { get; set; }
+
+
+ ///
+ /// 部位 英文
+ ///
+ public string PartEN { get; set; } = string.Empty;
+
+
+
+ ///
+ /// TULOC 英文
+ ///
+ public string TULOCEN { get; set; } = string.Empty;
+
+
+
+
+ ///
+ /// 位置 英文
+ ///
+ public string TULATEN { get; set; } = string.Empty;
}
public class GetTrialSelectOrganListInDto
@@ -230,6 +251,25 @@ namespace IRaCIS.Core.Application.ViewModel
///
public IsLymph IsLymphNodes { get; set; }
+
+ ///
+ /// 部位 英文
+ ///
+ public string PartEN { get; set; } = string.Empty;
+
+
+ ///
+ /// TULOC 英文
+ ///
+ public string TULOCEN { get; set; } = string.Empty;
+
+
+
+ ///
+ /// 位置 英文
+ ///
+ public string TULATEN { get; set; } = string.Empty;
+
}
///OrganInfoQuery 列表查询参数模型
@@ -290,6 +330,27 @@ namespace IRaCIS.Core.Application.ViewModel
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; }
+
+
+ ///
+ /// 部位 英文
+ ///
+ public string PartEN { get; set; } = string.Empty;
+
+
+
+ ///
+ /// TULOC 英文
+ ///
+ public string TULOCEN { get; set; } = string.Empty;
+
+
+
+
+ ///
+ /// 位置 英文
+ ///
+ public string TULATEN { get; set; } = string.Empty;
}
diff --git a/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs b/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs
index e015a5e0..9e3d6eaa 100644
--- a/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs
@@ -268,6 +268,9 @@ namespace IRaCIS.Core.Application.Service
IsCanEditPosition=data.IsCanEditPosition,
IsEnable = trialData.IsEnable,
OrganType = data.OrganType,
+ PartEN=data.PartEN,
+ TULATEN=data.TULATEN,
+ TULOCEN=data.TULOCEN,
};
diff --git a/IRaCIS.Core.Domain/Reading/OrganInfo.cs b/IRaCIS.Core.Domain/Reading/OrganInfo.cs
index 24142198..1bda2e28 100644
--- a/IRaCIS.Core.Domain/Reading/OrganInfo.cs
+++ b/IRaCIS.Core.Domain/Reading/OrganInfo.cs
@@ -21,17 +21,33 @@ namespace IRaCIS.Core.Domain.Models
/// 部位
///
public string Part { get; set; }
-
+
///
- /// TULOC
- ///
+ /// 部位 英文
+ ///
+ public string PartEN { get; set; } = string.Empty;
+
+ ///
+ /// TULOC
+ ///
public string TULOC { get; set; }
-
+
///
- /// 位置
- ///
+ /// TULOC 英文
+ ///
+ public string TULOCEN { get; set; } = string.Empty;
+
+ ///
+ /// 位置
+ ///
public string TULAT { get; set; }
+
+ ///
+ /// 位置 英文
+ ///
+ public string TULATEN { get; set; } = string.Empty;
+
///
/// 备注
///