25 lines
639 B
C#
25 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.SSO
|
|
{
|
|
[Table("employee")]
|
|
public class Employee
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public int? employee_id { get; set; }
|
|
public string? employee_name { get; set; }
|
|
public string? phone { get; set; }
|
|
public int? is_deleted { get; set; }
|
|
public int? status { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
|
|
public DateTime? create_time { get; set; }
|
|
public string? phone_resid { get; set; }
|
|
}
|
|
} |