From 4c70aef494346b6f77672d42751221ebc46e3911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Wed, 25 Oct 2023 17:33:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=B7=BB=E5=8A=A0=E5=BE=8B?= =?UTF-8?q?=E5=B8=88=E7=9A=84model=E5=8F=8Amap=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Entity/AuthManageProfile.cs | 2 ++ .../SystemDto/App_Sys_AddLawyerInput.cs | 28 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs diff --git a/Elight.Entity/AuthManageProfile.cs b/Elight.Entity/AuthManageProfile.cs index 3758a81..45dc2d0 100644 --- a/Elight.Entity/AuthManageProfile.cs +++ b/Elight.Entity/AuthManageProfile.cs @@ -21,6 +21,8 @@ namespace Elight.Entity CreateMap().ReverseMap(); CreateMap().ReverseMap(); + CreateMap(); + CreateMap(); diff --git a/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs b/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs new file mode 100644 index 0000000..f1a7c5c --- /dev/null +++ b/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace Elight.Entity +{ + public class App_Sys_AddLawyerInput + { + /// + /// 身份证号码 + /// + [DataMember] + public string? cardId { get; set; } + /// + /// 电话号码 + /// + [DataMember] + public string? phone { get; set; } + /// + /// 名称 + /// + [DataMember] + public string? name { get; set; } + } +}