29 lines
868 B
C#
29 lines
868 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.SSO
|
|
{
|
|
public class SSO_Department
|
|
{
|
|
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 SSO_DepartmentExtend: SSO_Department
|
|
{
|
|
public decimal? IS_PROFESSION { get; set; } = 0;
|
|
}
|
|
}
|