report.go 246 B

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