Zxd.Core/code/Zxd.Entity/Action/EmployeeDepartmentDetail.cs

26 lines
566 B
C#

namespace Zxd.Entity.Action
{
[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; }
public int? level { get; set; }
public int? is_deleted { get; set; }
public DateTime? create_time { get; set; }
public DateTime? update_time { get; set; }
}
}