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.
iot/projects/Application/Domain/Entities/IoT/IoTParameter.cs

24 lines
656 B

using Infrastructure.Domain;
using System;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
/// <summary>
/// API参数
/// </summary>
[Display(Name = "参数",Order =13)]
[Scope]
[IoTModule]
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; }
}
}