37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
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<EmployeeDepartmentDetailItem> eddList { get; set; }
|
|
//public List<EmployeeDepartmentItem> 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; }
|
|
}
|
|
}
|