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; } } }