| 1234567891011121314 |
- package downStreamService
- import (
- "MeterService/dataStruct"
- "MeterService/service/downStreamService/proto/report"
- )
- func reportData(dataArray []*dataStruct.CollectData, config *dataStruct.DtuConfig) {
- switch config.Protocol {
- case "YC-HJ212":
- go report.YcHj212Report(dataArray, config)
- default:
- }
- }
|