using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Entity.HgAction { [Table("employee_department_full")] public class EmployeeDepartmentFull { [Key] public int id { get; set; } public int eid { get; set; } public string appid { get; set; } public string app_name { get; set; } public DateTime create_time { get; set; } } }