TG.WXCRM.V4/Model/SSO/SSO_Employee.cs

26 lines
799 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WX.CRM.Model.SSO
{
public class SSO_Employee
{
public int id { get; set; }
public int status { get; set; }
public int? sex { get; set; }
public string phone { get; set; }
public string 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; }
}
}