From e55488197b2ef198ab6b7cbc78cf8359c25a3980 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 1 Dec 2023 10:43:36 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=88=A4=E6=96=ADid?= =?UTF-8?q?=E4=B8=BA=E9=A2=84=E7=BA=A6id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index e4f2ade..25fa454 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -362,7 +362,7 @@ namespace _24Hour.Controllers.Common { try { - var lawsvc =await _db.Queryable().Where(x => x.Id == dto.Id).FirstAsync(); + var lawsvc =await _db.Queryable().Where(x => x.Id == dto.lawyerserviceId).FirstAsync(); if (lawsvc==null) { return Result.Error("预约信息不存在"); From 9fee2194d8dd2e34d5fc6e1e651be7545baa7b7d Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 3 Dec 2023 12:44:19 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=90=8C=E6=84=8F?= =?UTF-8?q?=E4=BF=A1=E7=94=A8=E4=BB=A3=E7=A0=81=E8=87=B3App=5FSys=5FAddLaw?= =?UTF-8?q?yerInput?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs b/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs index aae9dbb..4848f88 100644 --- a/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs +++ b/Elight.Entity/SystemDto/App_Sys_AddLawyerInput.cs @@ -33,5 +33,10 @@ namespace Elight.Entity /// [DataMember] public string? departmentName { get; set; } + /// + /// 统一信用代码 + /// + [DataMember] + public string? departmentUnifiedSocialCreditCode { get; set; } } }