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;
+
///
/// 备注
///