using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Domain.Dto.Customer { public class SynchronousCustomerDto { public List eddList { get; set; } //public List edList { get; set; } } public class EmployeeDepartmentDetailItem { public int id { get; set; } public int? eid { get; set; } public int department_id { get; set; } public int department_type { get; set; } public int level { get; set; } public int is_deleted { get; set; } public DateTime create_time { get; set; } public DateTime update_time { get; set; } } public class EmployeeDepartmentItem { public int id { get; set; } public int? eid { get; set; } public int department_id { get; set; } public string department_code { get; set; } public int is_deleted { get; set; } public DateTime create_time { get; set; } public DateTime update_time { get; set; } } }