security.go 579 B

123456789101112131415161718
  1. package model
  2. type CameraLiveDetail struct {
  3. PoleGroupName string `json:"poleGroupName"`
  4. CameraList []CameraLive `json:"cameraList"`
  5. }
  6. type CameraLive struct {
  7. Id int `json:"id"`
  8. DeviceName string `json:"deviceName"`
  9. DeviceSn string `json:"deviceSn"`
  10. PoleGroupName string `json:"poleGroupName"`
  11. MonitorAddress string `json:"monitorAddress"`
  12. StreamId string `json:"streamId"`
  13. RunState string `json:"runState"`
  14. CameraType int `json:"cameraType"`
  15. LampPoleLocation string `json:"lampPoleLocation"`
  16. }