ComplianceServer/code/Hg.Core.Entity/CompanyBaseConf/Employee.cs

22 lines
460 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity.CompanyBaseConf
{
[Table("Employee")]
public class Employee
{
[Key]
[Column("id")]
public int Id { get; set; }
[Column("employee_id")]
public int EmployeeID { get; set; }
[Column("employee_name")]
public string EmployeeName { get; set; }
}
}