21 lines
555 B
C#
21 lines
555 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")]
|
|
public class EmployeeDepartment
|
|
{
|
|
public int ID { get; set; }
|
|
public int? EID { get; set; }
|
|
public int DEPARTMENT_ID { get; set; }
|
|
public string DEPARTMENT_CODE { get; set; }
|
|
public int IS_DELETE { get; set; }
|
|
public DateTime CREATE_TIME { get; set; }
|
|
public DateTime UPDATE_TIME { get; set; }
|
|
}
|
|
}
|