1234567891011121314151617181920 |
- package model
- import (
- "iot_manager_service/app/device/dao"
- "time"
- )
- type RspCountDevice struct {
- CountDevices []dao.CountDevice `json:"data"`
- }
- type RspLightRate struct {
- LightRate []LightRate `json:"lightRate"`
- Energy []LightRate `json:"energy"`
- }
- type LightRate struct {
- ColumnValue string `json:"columnValue"`
- TimeLine time.Time `json:"timeLine"`
- }
|