using Infrastructure.Domain; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "接口")] [Scope] [Module("物联管控", "IoTCenter")] public class IoTApi : BaseEntity { public string Name { get; set; } public string Path { get; set; } public string Command { get; set; } public string Method { get; set; } public Guid IoTProductId { get; set; } public IoTProduct Product { get; set; } public List IoTParameters { get; set; } = new List(); public List IoTCommands { get; set; } = new List(); } }