ComplianceServer/code/Hg.Core.Entity/Employee_Department_Detail.cs

46 lines
1.0 KiB
C#

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
{
/// <summary>
/// 主键
/// </summary>
[Key]
public int id { get; set; }
public int eid { get; set; }
/// <summary>
/// 部门id
/// </summary>
public int department_id { get; set; }
/// <summary>
/// 部门名称
/// </summary>
public string department_name { get; set; }
/// <summary>
/// 部门类型
/// </summary>
public int department_type { get; set; }
public int emp_status { get; set; }
/// <summary>
/// 部门等级
/// </summary>
public int level { get; set; }
/// <summary>
/// 是否删除
/// </summary>
public int is_deleted { get; set; }
}
}