团餐订单
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

CurrentUser.cs 910 B

11 mesi fa
10 mesi fa
11 mesi fa
10 mesi fa
11 mesi fa
10 mesi fa
11 mesi fa
10 mesi fa
11 mesi fa
10 mesi fa
11 mesi fa
123456789101112131415161718192021222324252627282930
  1. using BPA.KitChen.GroupMealOrder.Core.Common.Const;
  2. using Furion;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.KitChen.GroupMealOrder.Core
  9. {
  10. public static class CurrentUser
  11. {
  12. public static string? UserId => App.User?.FindFirst(ClaimConst.CLAINM_USERID)?.Value;
  13. private static string tenantId;
  14. public static string? TenantId
  15. {
  16. get { return string.IsNullOrEmpty(App.User?.FindFirst(ClaimConst.GroupId)?.Value) ? tenantId : App.User?.FindFirst(ClaimConst.GroupId)?.Value; }
  17. set { tenantId = value; }
  18. }
  19. public static string? Account => App.User?.FindFirst(ClaimConst.CLAINM_ACCOUNT)?.Value;
  20. public static string? RoleId => App.User?.FindFirst(ClaimConst.RoleId)?.Value;
  21. public static string MessageId { get; set; }
  22. }
  23. }