123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by github.com.
- package consts
- const (
- PageSize = 10
- HalfMinSecond = 30
- MinSecond = 60
- )
- const (
- TimeSecondLayOut = "2006-01-02 15:04:05"
- DatabaseNotFound = "database not found"
- )
- const (
- DustDeviceCode = 5
- DustDeviceName = "扬尘设备"
- )
- const (
- DeviceOffline = 0
- DeviceOnline = 1
- )
- const (
- DeviceOfflineCode = "O001"
- )
- // 扬尘数据类型
- const (
- DustDataTypeRealTime = iota
- DustDataTypeMinute
- DustDataTypeHour
- DustDataTypeDay
- DustDataTypeNight
- DustDataTypeTotalDay
- DustDataTypeMonth
- DustDataTypeYear
- DustDataType20Minute
- )
|