intelligentLighting.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package model
  2. import "iot_manager_service/app/device/dao"
  3. const (
  4. RelationIdInvalid = "该记录未关联策略无法查看,请关联策略!"
  5. RelationTypeInvalid = "查询参数(关联类型)异常"
  6. RelationTypeLight = 1 //关联类型 灯控
  7. RelationTypeLampPoleGroup = 2 //关联类型 灯杆分组
  8. IsYear = 2 //全年设置2=是,1=否
  9. )
  10. type RspIntelligentLightDetail struct {
  11. LightControlList []dao.LightControl `json:"lightControlList"`
  12. LampPoleName string `json:"lampPoleName"`
  13. LightRelMap IntelligentLightSimple `json:"lightRelMap"`
  14. }
  15. type RspIntelligentLightDetailByGroup struct {
  16. LightControlList []dao.LightControl `json:"lightControlList"`
  17. LampPoleGroupName string `json:"lampPoleGroupName"`
  18. CountLampPole int `json:"countLampPole"`
  19. LightRelMap IntelligentLightSimple `json:"lightRelMap"`
  20. }
  21. type IntelligentLightSimple struct {
  22. TimeConditionList []TimeConditionSimple `json:"timeConditionList"` //时间条件列表
  23. LightName string `json:"lightName"` //灯控名称
  24. LightSn string `json:"lightSn"` //灯控SN
  25. EffectiveDate string `json:"effectiveDate"` //生效日期
  26. }
  27. type TimeConditionSimple struct {
  28. Luminance string `json:"luminance"`
  29. Times string `json:"times"`
  30. }
  31. type RspIntelligentLightList struct {
  32. Records []dao.IntelligentLight `json:"records"` //记录列表
  33. Current int `json:"current"` //当前分页
  34. Size int `json:"size"` //每页数量
  35. Pages int `json:"pages"` //总页数
  36. Total int `json:"total"` //总数
  37. }