namespace IoTIntegrationPlatform.Model.MqttModel { /// /// 物联设备请求实体 /// /// public class IotReq { /// /// 随机id /// public string uid { get; set; } /// /// 网关设备数据 /// public T data { get; set; } } }