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; }
|
2025-10-23 09:54:36 +08:00
|
|
|
|
public bool IsHead { get; set; }
|
2025-08-25 09:56:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|