18 lines
382 B
C#
18 lines
382 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 Employee_Department_Detail
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int eid { get; set; }
|
|
public int? department_id { get; set; }
|
|
}
|
|
}
|