lightControl.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "time"
  5. )
  6. type LightControlDetail struct {
  7. dao.LightControl
  8. EndLineTime time.Time `json:"endLineTime"` //最后上线时间
  9. NetworkState string `json:"networkState"` //网络状态
  10. RunState string `json:"runState"` //运行状态
  11. }
  12. type RspLightControlList struct {
  13. Records []LightControlDetail `json:"records"` //记录列表
  14. Current int `json:"current"` //当前分页
  15. Size int `json:"size"` //每页数量
  16. Total int `json:"total"` //总数
  17. Pages int `json:"pages"` //总页数
  18. }
  19. type ReqLightControlRemove struct {
  20. IDs int `json:"ids"` //分组编码
  21. Name string `json:"name"` //名称
  22. }
  23. type ReqLightControlEnable struct {
  24. ID int `json:"id"` //编码
  25. Status int `json:"status"` //启用禁用:1启用2禁用
  26. Name int `json:"name"` //名称
  27. SN int `json:"sn"` //sn
  28. }
  29. type ReqLightControlSwitch struct {
  30. HandSwitch int `json:"handSwitch"` //开关要更改的状态1=开启2=关闭
  31. HandTime int `json:"handTime"` //手动控制时间(分钟)
  32. Luminance int `json:"luminance"` //灯光亮度
  33. Explain string `json:"explain"` // 更改说明
  34. Name string `json:"name"` //名称
  35. SN string `json:"sn"` //SN
  36. }