package iotInterface import iotStruct "IotAdmin/iot/struct" // ReportHandler 上报处理接口 type ReportHandler interface { Adapter(data *iotStruct.CollectData) Report(data *iotStruct.CollectData, config *iotStruct.ReportConfig) *string }