constant.go 449 B

123456789101112131415161718192021222324252627282930
  1. package constant
  2. const DsnSplitString = ","
  3. const DsnChildSplitString = "|"
  4. const TCPTimeoutTime = 450 //tcp超时时间,秒
  5. const (
  6. IotDeviceTypeGateway = iota + 1
  7. IotDeviceTypeMeter
  8. )
  9. const (
  10. IotDeviceDisabled = iota + 1
  11. IotDeviceEnabled
  12. )
  13. const (
  14. IotDeviceModeCmd = iota + 1
  15. IotDeviceModeReport
  16. )
  17. const (
  18. IotDeviceOffline = iota + 1
  19. IotDeviceOnline
  20. )
  21. const (
  22. IotDeviceDelete = iota
  23. IotDeviceAdd
  24. IotDeviceUpdate
  25. IotDeviceRefresh
  26. )