infoBoard.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "time"
  5. )
  6. type RsqInfoBoardList struct {
  7. Records []InfoBoardDetail `json:"records"` //记录列表
  8. Current int `json:"current"` //当前分页
  9. Size int `json:"size"` //每页数量
  10. Pages int `json:"pages"` //总页数
  11. Total int `json:"total"` //总数
  12. }
  13. type ReqInfoBoardRemove struct {
  14. IDs int `json:"ids"` //分组编码
  15. }
  16. type InfoBoardDetail struct {
  17. dao.InfoBoard
  18. EndLineTime time.Time `json:"endLineTime"` //最后上线时间
  19. NetworkState string `json:"networkState"` //网络状态
  20. RunState string `json:"runState"` //运行状态
  21. PublicName string `json:"publicName"` //节目发布时使用
  22. OnTheAir string `json:"onTheAir"` //当前播放的节目
  23. ResolutionName string `json:"resolutionName"` //分辨率
  24. Volume string `json:"volume"` //音量
  25. Voltage string `json:"voltage"` //电压
  26. Luminance string `json:"luminance"` //亮度
  27. Temperature string `json:"temperature"` //色温
  28. RebootTime string `json:"rebootTime"` //重启时间
  29. Power string `json:"power"` //电源状态
  30. BootStartTime string `json:"bootStartTime"` //开关机状态
  31. BootEndTime string `json:"bootEndTime"` //开关机状态
  32. }
  33. // CltledData 信息屏 数据
  34. type CltledData struct {
  35. Powerstatus string `json:"powerstatus"` //电源状态 1 0
  36. Musicvolume string `json:"musicvolume"` //音量
  37. Brightness string `json:"brightness"` //亮度
  38. Playing string `json:"playing"` //当前播放节目
  39. Colortemperature string `json:"colortemperature"` //色温
  40. SleepTime string `json:"sleepTime"` //关机时间
  41. WakeupTime string `json:"wakeupTime"` //开机时间
  42. RebootTime string `json:"rebootTime"` //重启时间
  43. RealWidth string `json:"real_width"` //宽度
  44. RealHeight string `json:"real_height"` //高度
  45. }