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