From 9459300bec8924c5eb42e36dada55ecf5c5a5fda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 30 Oct 2023 09:25:14 +0800 Subject: [PATCH] =?UTF-8?q?App=5FSys=5FAddLawyerInput=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E8=AF=81id=EF=BC=8C=E9=83=A8=E9=97=A8?= =?UTF-8?q?=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs b/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs index f1a7c5c..aae9dbb 100644 --- a/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs +++ b/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs @@ -9,6 +9,8 @@ namespace Elight.Entity { public class App_Sys_AddLawyerInput { + [DataMember] + public string? Id { get; set; } /// /// 身份证号码 /// @@ -24,5 +26,12 @@ namespace Elight.Entity /// [DataMember] public string? name { get; set; } + [DataMember] + public string? identitycardId { get; set; } + /// + /// 部门 + /// + [DataMember] + public string? departmentName { get; set; } } }