Zxd.Core/code/Zxd.Entity/Zxd/Employee.cs

26 lines
728 B
C#

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