using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Domain.Sso { public class SsoDepartment { public int id { get; set; } public string remark { get; set; } public int status { get; set; } public int? parent_id { get; set; } public string department_name { get; set; } public int department_sort { get; set; } public int department_type { get; set; } public string department_code { get; set; } public int is_deleted { get; set; } public string create_time { get; set; } public string update_time { get; set; } public bool is_checked { get; set; } } public class SsoDepartmentExtend : SsoDepartment { public decimal? IS_PROFESSION { get; set; } = 0; } }