19 lines
503 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>
/// 设备在物联网平台中发送的命令内容JSON格式
/// </summary>
[Required(ErrorMessage = "命令内容不能为空")]
public string CommandContent { get; set; }
}
}