25 lines
647 B
C#
25 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[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 int DEPARTMENT_TYPE { get; set; }
|
|
|
|
[Column("D_LEVEL")]
|
|
public int LEVEL { get; set; }
|
|
public int IS_DELETE { get; set; }
|
|
public DateTime CREATE_TIME { get; set; }
|
|
public DateTime UPDATE_TIME { get; set; }
|
|
}
|
|
}
|