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.
21 lines
522 B
21 lines
522 B
using Infrastructure.Application;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.Models
|
|
{
|
|
[Display(Name = "命令")]
|
|
public class DisplayCommandModel : EditModel
|
|
{
|
|
[Display(Name = "节点")]
|
|
public string NodeId { get; set; }
|
|
|
|
[Display(Name = "设备")]
|
|
public string DeviceId { get; set; }
|
|
|
|
[Display(Name = "Api")]
|
|
public string ApiId { get; set; }
|
|
|
|
[Display(Name = "参数")]
|
|
public string QueryString { get; set; }
|
|
}
|
|
} |