30 lines
834 B
C#
30 lines
834 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("employee_department_detail")]
|
|
public class EmployeeDepartmentDetail
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int? eid { get; set; }
|
|
public int department_id { get; set; }
|
|
public string department_name { get; set; }
|
|
public int department_type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1 在职 2 离职 3试用 4待入职
|
|
/// </summary>
|
|
[Column("emp_status")]
|
|
public int empStatus { 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; }
|
|
}
|
|
}
|