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; } + } +}