| 123456789101112131415161718192021222324252627282930 |
- package constant
- const DsnSplitString = ","
- const DsnChildSplitString = "|"
- const TCPTimeoutTime = 450 //tcp超时时间,秒
- const (
- IotDeviceTypeGateway = iota + 1
- IotDeviceTypeMeter
- )
- const (
- IotDeviceDisabled = iota + 1
- IotDeviceEnabled
- )
- const (
- IotDeviceModeCmd = iota + 1
- IotDeviceModeReport
- )
- const (
- IotDeviceOffline = iota + 1
- IotDeviceOnline
- )
- const (
- IotDeviceDelete = iota
- IotDeviceAdd
- IotDeviceUpdate
- IotDeviceRefresh
- )
|