23 lines
611 B
C#
23 lines
611 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.SSO
|
|
{
|
|
[Table("department")]
|
|
public class Department
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public int? parent_id { get; set; }
|
|
public string? department_name { get; set; }
|
|
public int? department_sort { get; set; }
|
|
public int? department_type { get; set; }
|
|
public string? department_code { get; set; }
|
|
public int? is_deleted { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
}
|
|
} |