workbench.go 373 B

1234567891011121314151617181920
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "time"
  5. )
  6. type RspCountDevice struct {
  7. CountDevices []dao.CountDevice `json:"data"`
  8. }
  9. type RspLightRate struct {
  10. LightRate []LightRate `json:"lightRate"`
  11. Energy []LightRate `json:"energy"`
  12. }
  13. type LightRate struct {
  14. ColumnValue string `json:"columnValue"`
  15. TimeLine time.Time `json:"timeLine"`
  16. }