using Infrastructure.Domain; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "职务", Order = 71)] [AdminModule] public class Title : BaseEntity { public string Name { get; set; } public int MinLevel { get; set; } public int MaxLevel { get; set; } public Guid OrganId { get; set; } public Organ Organ { get; set; } public List Jobs { get; set; } = new List(); } }