using Infrastructure.Domain; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "应用")] [Scope] [Module("基础设置", "Admin")] public class Site : BaseEntity { public string Name { get; set; } public string Icon { get; set; } public string Description { get; set; } public string Key { get; set; } public string Home { get; set; } public string Login { get; set; } public string Logout { get; set; } public bool Disabled { get; set; } public int Order { get; set; } } }