mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
29 lines
847 B
C#
29 lines
847 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using OpenAuth.Domain.Utility;
|
|
|
|
namespace OpenAuth.Domain.Model
|
|
{
|
|
public partial class Department : EntityBase<string>, IAggregateRoot
|
|
{
|
|
public Department()
|
|
{
|
|
this.Roles = new List<Role>();
|
|
this.Users = new List<User>();
|
|
}
|
|
|
|
public string ParentId { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Description { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public Nullable<int> SortCode { get; set; }
|
|
public bool DeleteMark { get; set; }
|
|
public virtual ICollection<Role> Roles { get; set; }
|
|
public virtual ICollection<User> Users { get; set; }
|
|
protected override void Validate()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|