团餐订单
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

36 行
1017 B

  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. public static string StoreId { get; set; }
  23. public static string StoreName { get; set; }
  24. }
  25. }