19 lines
474 B
C#
19 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain.Sso
|
|
{
|
|
public class SsoEmployeeDepartment
|
|
{
|
|
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; }
|
|
}
|
|
}
|