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