19 lines
519 B
C#
Raw Normal View History

using JiShe.ServicePro.Core;
using JiShe.ServicePro.Enums;
2025-08-04 17:29:47 +08:00
using System.ComponentModel.DataAnnotations;
namespace JiShe.IoT.DeviceAggregation
{
/// <summary>
/// 设备命令
/// </summary>
public class DeviceCommandForApiInput:IdInput
{
2025-08-04 17:29:47 +08:00
/// <summary>
/// 设备在物联网平台中属性设置的参数键值对
2025-08-04 17:29:47 +08:00
/// </summary>
[Required(ErrorMessage = "命令内容不能为空")]
public Dictionary<string,object> CommandContent { get; set; }
2025-08-04 17:29:47 +08:00
}
}