40 lines
921 B
C#
40 lines
921 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.HgAction
|
|
{
|
|
|
|
[Table("department")]
|
|
public class HGDepartment
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Column("parent_id")]
|
|
public int? ParentId { get; set; }
|
|
|
|
[Column("department_name")]
|
|
public string? DepartmentName { get; set; }
|
|
|
|
[Column("department_type")]
|
|
public int? DepartmentType { get; set; }
|
|
|
|
[Column("status")]
|
|
public int? Status { get; set; }
|
|
|
|
[Column("department_code")]
|
|
public string? DepartmentCode { get; set; }
|
|
|
|
[Column("is_deleted")]
|
|
public bool IsDeleted { get; set; }
|
|
[Column("create_time")]
|
|
public DateTime Create_Time { get; set; }
|
|
|
|
[Column("update_time")]
|
|
public DateTime Update_Time { get; set; }
|
|
}
|
|
}
|