29 lines
		
	
	
		
			625 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			625 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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; }
 | 
						|
    }
 | 
						|
}
 |