using Infrastructure.Domain; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "机构")] public class Organ : BaseTreeEntity { public string Contact { get; set; } public List OrganUsers { get; set; } = new List(); } }