using Infrastructure.Domain; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace IoT.Shared.Application.Domain.Entities { [Display(Name = "节点类型")] [Scope] [Group("物联管控", "IoTCenter")] public class IoTGatewayCategory : BaseTreeEntity { [Display(Name = "模板")] public string Template { get; set; } public List CategoryNodes { get; set; } = new List(); } }