namespace IoTIntegrationPlatform.Model.MqttModel { /// /// 设备事件 /// public class DeviceEventInfo { /// /// 设备id /// public string deviceId { get; set; } /// /// 1: 继电器打开、传感器有值 0:继电器断开、传感器无值 /// public int deviceStatus { get; set; } } }