using Infrastructure.Domain; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace IoTCenter.Application.Domain { [Display(Name = "节点类型")] public class NodeCategory : BaseEntity { [Display(Name = "分类名称")] public string Name { get; set; } public string Number { get; set; } [Display(Name = "模板")] public string Template { get; set; } [Display(Name = "序号")] public int DisplayOrder { get; set; } public List CategoryNodes { get; set; } = new List(); } }