1234567891011121314151617181920212223242526272829 |
- // 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 (
- TowerDeviceCode = 1
- TowerDeviceName = "塔吊"
- )
- const (
- DeviceOffline = 0
- DeviceOnline = 1
- )
- const (
- DeviceOfflineCode = "O001"
- )
|