22 lines
545 B
C#
22 lines
545 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.SSO
|
|
{
|
|
/// <summary>
|
|
/// 员工部门关系表
|
|
/// </summary>
|
|
public class SSO_Employee_Department
|
|
{
|
|
public int id { get; set; }
|
|
public int employee_id { get; set; }
|
|
public int department_id { get; set; }
|
|
public int is_deleted { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
}
|
|
}
|