using Infrastructure.Domain; using System; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { /// /// API参数 /// [Display(Name = "参数")] [Scope] [Module("物联管控", "IoTCenter")] public class IoTParameter : BaseEntity { public string Type { get; set; } public string Name { get; set; } public string Description { get; set; } public bool Required { get; set; } public string Maxinum { get; set; } public string Minimum { get; set; } public Guid IoTApiId { get; set; } public IoTApi IoTApi { get; set; } } }