mh_jy_safe/APT.Utility/SessionData.cs

30 lines
666 B
C#
Raw Permalink Normal View History

2025-08-25 09:56:57 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace APT.Utility
{
public class SessionData
{
public int GrantType { get; set; }
public Guid? DataChannelId { get; set; }
public string UserName { get; set; }
public string UserCode { get; set; }
public Guid? DepartmentId { get; set; }
public Guid? UserId { get; set; }
public Guid? OrgId { get; set; }
public Guid? RootOrgId { get; set; }
public string MineType { get; set; }
public string[] DataRule { get; set; }
public bool IsHead { get; set; }
2025-08-25 09:56:57 +08:00
}
}