using Admin.Core.Service.Personnel.Employee.Input;
namespace Admin.Core.Service.Personnel.Employee.Output
{
public class EmployeeGetOutput : EmployeeUpdateInput
{
///
/// 主属部门
///
public string OrganizationName { get; set; }
///
/// 附属部门
///
public string[] OrganizationNames { get; set; }
///
/// 职位
///
public string PositionName { get; set; }
}
}