基础服务api
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
543 B

  1. using BPA.SAAS.KitChenManage.Core;
  2. using BPA.SAAS.Manage.Core;
  3. using Furion;
  4. using Microsoft.AspNetCore.Http;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace BPA.SAAS.Manage.Application.AExternalPlatform.BaseDto
  11. {
  12. public class UserAnalysis
  13. {
  14. public UserAnalysis()
  15. {
  16. CurrentUser.GroupId = App.HttpContext.Request.Headers["TenantId"];
  17. // CurrentUser.Sign = App.HttpContext.Request.Headers["Sign"];
  18. }
  19. }
  20. }