using System;
namespace Admin.Core.Service.Personnel.Employee.Output
{
public class EmployeeListOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 账号
///
public string UserName { get; set; }
///
/// 主属部门
///
public long OrganizationName { get; set; }
///
/// 附属部门
///
public string[] OrganizationNames { get; set; }
///
/// 职位
///
public string PositionName { get; set; }
///
/// 手机号
///
public string Phone { get; set; }
}
}