d_sms_service/APT.Utility/SessionData.cs

29 lines
625 B
C#
Raw Normal View History

2024-10-28 13:45:58 +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; }
}
}