ComplianceServer/code/Hg.Core.Domain/Sso/SsoEmployeeDepartment.cs

19 lines
478 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.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; }
}
}