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 profession_departments, List other_departments, List employees, List employee_departments) { this.profession_departments = profession_departments; this.other_departments = other_departments; this.employees = employees; this.employee_departments = employee_departments; } /// /// 业务部门 /// public List profession_departments { get; set; } /// /// 其他部门 /// public List other_departments { get; set; } /// /// 员工信息 /// public List employees { get; set; } /// /// 员工部门关系 /// public List employee_departments { get; set; } } }