You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
510 B

  1. using BPA.KitChen.GroupMeal.Core.Common;
  2. using Furion;
  3. using Microsoft.AspNetCore.Http;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace BPA.Kitchen.Core.Common.RequestAnalysis
  10. {
  11. public class UserAnalysis
  12. {
  13. public UserAnalysis()
  14. {
  15. //CurrentUser.AppId = App.HttpContext.Request.Headers["AppId"];
  16. CurrentUser.TenantId = App.HttpContext.Request.Headers["GroupId"];
  17. }
  18. }
  19. }