using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("employee_department_detail")] public class Employee_Department_Detail { /// /// 主键 /// [Key] public int id { get; set; } public int eid { get; set; } /// /// 部门id /// public int department_id { get; set; } /// /// 部门名称 /// public string department_name { get; set; } /// /// 部门类型 /// public int department_type { get; set; } public int emp_status { get; set; } /// /// 部门等级 /// public int level { get; set; } /// /// 是否删除 /// public int is_deleted { get; set; } } }