You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
543 B
18 lines
543 B
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<IoTGatewayCategory>
|
|
{
|
|
[Display(Name = "模板")]
|
|
public string Template { get; set; }
|
|
|
|
public List<IoTGatewayCategoryIoTGateway> CategoryNodes { get; set; } = new List<IoTGatewayCategoryIoTGateway>();
|
|
}
|
|
}
|