屠宰场客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
622 B

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; }
}
}