workbench.go 513 B

1234567891011121314151617181920212223242526
  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 ReqLightRates struct {
  10. QueryType string `form:"queryType"`
  11. StartDate string `form:"startDate"`
  12. EndDate string `form:"endDate"`
  13. }
  14. type RspLightRate struct {
  15. LightRate []LightRate `json:"lightRate"`
  16. Energy []LightRate `json:"energy"`
  17. }
  18. type LightRate struct {
  19. ColumnValue string `json:"columnValue"`
  20. TimeLine time.Time `json:"timeLine"`
  21. }