37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain.Sso
|
|
{
|
|
public class SsoOrganization
|
|
{
|
|
public SsoOrganization(List<SsoDepartment> profession_departments, List<SsoDepartment> other_departments, List<SsoEmployee> employees, List<SsoEmployeeDepartment> employee_departments)
|
|
{
|
|
this.profession_departments = profession_departments;
|
|
this.other_departments = other_departments;
|
|
this.employees = employees;
|
|
this.employee_departments = employee_departments;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 业务部门
|
|
/// </summary>
|
|
public List<SsoDepartment> profession_departments { get; set; }
|
|
/// <summary>
|
|
/// 其他部门
|
|
/// </summary>
|
|
public List<SsoDepartment> other_departments { get; set; }
|
|
/// <summary>
|
|
/// 员工信息
|
|
/// </summary>
|
|
public List<SsoEmployee> employees { get; set; }
|
|
/// <summary>
|
|
/// 员工部门关系
|
|
/// </summary>
|
|
public List<SsoEmployeeDepartment> employee_departments { get; set; }
|
|
}
|
|
}
|