dev_screens.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package devices
  2. import (
  3. "server/dao/devices"
  4. "time"
  5. )
  6. type RspParams struct {
  7. Resolution []devices.Resolution `json:"resolution"`
  8. ScreensSize []devices.ScreensSize `json:"screensSize"`
  9. PubGateway []devices.GateWay `json:"pubGateway"`
  10. }
  11. type ReqScreens struct {
  12. ID int `json:"id"` //ID
  13. ScreensName string `json:"screensName"` //名称
  14. ScreensCode string `json:"screensCode"` //设备编号
  15. Sn string `json:"sn"` //sn
  16. Network int `json:"network"` //组网方式
  17. ScreensBrand string `json:"screensBrand"` //品牌
  18. ScreensModel string `json:"screensModel"` //型号
  19. IpAddress string `json:"ipAddress"` //IP地址
  20. GatewayID int `json:"gatewayId"` //所属网关
  21. ResolutionId int `json:"resolutionId"` //分辨率
  22. ScreensSizeId int `json:"screensSizeId"` //屏幕尺寸
  23. Shunt int `json:"shunt"` //所属分路 1主路,2支路
  24. ShuntDescribe string `json:"shuntDescribe"` //分路描述
  25. InstallTime time.Time `json:"installTime"` //安装时间
  26. }
  27. type ReqInCode struct {
  28. Sn string `json:"sn"` //设备sn
  29. Content []Content `json:"content"` //发送的内容
  30. }
  31. type Content struct {
  32. Text string `json:"text"` //文字内容
  33. Color string `json:"color"` //文字颜色
  34. Size string `json:"size"` //文字尺寸
  35. }