mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-19 07:44:59 +08:00
14 lines
394 B
C#
14 lines
394 B
C#
namespace OpenAuth.Domain
|
|
{
|
|
public partial class Department
|
|
{
|
|
public string DepartmentId { get; set; }
|
|
public string ParentId { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Description { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public int SortCode { get; set; }
|
|
public bool DeleteMark { get; set; }
|
|
}
|
|
}
|