From e613eaa5a7081221063d75381eae5bc75b588621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Thu, 26 Oct 2023 10:24:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E8=A6=81=E7=9A=84?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E7=A9=BA=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 289080b..d95a818 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -5,6 +5,7 @@ using Elight.Entity.APPDto.Lawyer; using Elight.Entity.AppMode.Lawyer; using Elight.Logic; using Elight.Logic.Model.Lawyer; +using Elight.Logic.SystemModel; using Elight.Utility; using Elight.Utility.Code; using Elight.Utility.Extensions; @@ -496,7 +497,6 @@ namespace _24Hour.Controllers.Common result.Message = "添加失败"; return result; } - } } /// @@ -511,10 +511,10 @@ namespace _24Hour.Controllers.Common var str = $"{_userdata.cardId},{_userdata.name}"; Result result = new(); result.result = Convert.ToBase64String(Encoding.UTF8.GetBytes(str)); - result.IsSucceed = true; + result.IsSucceed = true; return Task.FromResult(result); - } + } public class DecodeQRDataModel { public string QRData { get; set; }