using Infrastructure.Domain;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace IoTShared.Application.Domain.Entities
{
[Display(Name = "区域")]
public class Area : BaseTreeEntity
{
public string Name { get; set; }
public string Number { get; set; }
public List Organs { get; set; } = new List();
}
}