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

23 lines
598 B
C#

using Microsoft.VisualBasic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.CompanyBaseConf
{
[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 login_password { get; set; }
//public string job_grade { get; set; }
//public string? employee_position { get; set; }
public int? status { get; set; }
}
}