using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BO.Utils
|
|
{
|
|
public class LoginUserInfo
|
|
{
|
|
public long ID { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public long Domain_ID { get; set; }
|
|
|
|
public long? AccountingUnit_ID { get; set; }
|
|
|
|
public string AccountingUnit_Name { get; set; }
|
|
|
|
public long? Department_ID { get; set; }
|
|
|
|
public string Department_Name { get; set; }
|
|
|
|
public long Employee_ID { get; set; }
|
|
|
|
public string Employee_Name { get; set; }
|
|
|
|
public string Role { get; set; }
|
|
}
|
|
}
|