Browse Source

删除不要的命名空间

develop-lawyerExampaper
胡超1 2 years ago
parent
commit
e613eaa5a7
  1. 6
      24Hour/Controllers/Common/LawyerArchivesController.cs

6
24Hour/Controllers/Common/LawyerArchivesController.cs

@ -5,6 +5,7 @@ using Elight.Entity.APPDto.Lawyer;
using Elight.Entity.AppMode.Lawyer; using Elight.Entity.AppMode.Lawyer;
using Elight.Logic; using Elight.Logic;
using Elight.Logic.Model.Lawyer; using Elight.Logic.Model.Lawyer;
using Elight.Logic.SystemModel;
using Elight.Utility; using Elight.Utility;
using Elight.Utility.Code; using Elight.Utility.Code;
using Elight.Utility.Extensions; using Elight.Utility.Extensions;
@ -496,7 +497,6 @@ namespace _24Hour.Controllers.Common
result.Message = "添加失败"; result.Message = "添加失败";
return result; return result;
} }
} }
} }
/// <summary> /// <summary>
@ -511,10 +511,10 @@ namespace _24Hour.Controllers.Common
var str = $"{_userdata.cardId},{_userdata.name}"; var str = $"{_userdata.cardId},{_userdata.name}";
Result<string> result = new(); Result<string> result = new();
result.result = Convert.ToBase64String(Encoding.UTF8.GetBytes(str)); result.result = Convert.ToBase64String(Encoding.UTF8.GetBytes(str));
result.IsSucceed = true; result.IsSucceed = true;
return Task.FromResult(result); return Task.FromResult(result);
} }
public class DecodeQRDataModel public class DecodeQRDataModel
{ {
public string QRData { get; set; } public string QRData { get; set; }

Loading…
Cancel
Save