using Infrastructure.Domain;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
[Display(Name = "区域", Order = 20)]
[Scope]
[Module("平台配置", "Admin")]
public class Area : BaseTreeEntity
{
public string Type { get; set; }
public List Organs { get; set; } = new List();
}
}