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.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;
}
}
}
/// <summary>
@ -511,10 +511,10 @@ namespace _24Hour.Controllers.Common
var str = $"{_userdata.cardId},{_userdata.name}";
Result<string> 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; }

Loading…
Cancel
Save