using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Entity.CompanyBaseConf { [Table("employee_department_detail")] public class EmployeeDepartmentDetail { [Key] public int id { get; set; } public int emp_id { 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; } } }