using Infrastructure.Domain; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "部门")] public class Department : BaseTreeEntity { public List UserDepartments { get; set; } = new List(); } }