log.go 396 B

12345678910111213
  1. package iotStruct
  2. type LogData struct {
  3. No string `json:"n"`
  4. Time string `json:"t"`
  5. ReportHost string `json:"h"`
  6. ReportProtocol string `json:"p"`
  7. ReportMn string `json:"mn"`
  8. ReportUser string `json:"u"`
  9. ReportPwd string `json:"pw"`
  10. ReportStr string `json:"s"`
  11. Data CollectData `json:"d"`
  12. }