26 lines
793 B
C#
26 lines
793 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain.Sso
|
|
{
|
|
public class SsoEmployee
|
|
{
|
|
public int id { get; set; }
|
|
public int status { get; set; }
|
|
public int? sex { get; set; }
|
|
public string phone { get; set; }
|
|
public int employee_id { get; set; }
|
|
public string employee_name { get; set; }
|
|
public string employee_position { get; set; }
|
|
public DateTime? entry_date { get; set; }
|
|
public DateTime? leave_date { get; set; }
|
|
public int is_change_password { get; set; }
|
|
public int is_deleted { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
}
|
|
}
|