using Newtonsoft.Json; namespace PluginInterface.HuaWeiRoma { public class HwDeleteDeviceDto { /// /// 命令ID /// [JsonProperty(PropertyName = "id")] public long Id { get; set; } /// /// 平台生成的设备唯一标识,对应设备客户端ID /// [JsonProperty(PropertyName = "deviceId")] public string? DeviceId { get; set; } /// /// 请求时间戳 /// [JsonProperty(PropertyName = "requestTime")] public long RequestTime { get; set; } /// /// 子设备信息 /// [JsonProperty(PropertyName = "request")] public Request? Request { get; set; } } public class Request { /// /// 厂商名称 /// [JsonProperty(PropertyName = "manufacturerName")] public string? ManufacturerName { get; set; } /// /// 厂商ID /// [JsonProperty(PropertyName = "manufacturerId")] public string? ManufacturerId { get; set; } /// /// 产品型号 /// [JsonProperty(PropertyName = "model")] public string? ProductType { get; set; } } }