团餐订单
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.
 
 

22 lines
477 B

  1. using Furion;
  2. using Microsoft.AspNetCore.Http;
  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.RequestAnalysis
  9. {
  10. public class UserAnalysis
  11. {
  12. public UserAnalysis()
  13. {
  14. //CurrentUser.AppId = App.HttpContext.Request.Headers["AppId"];
  15. CurrentUser.TenantId = App.HttpContext.Request.Headers["GroupId"];
  16. }
  17. }
  18. }