gateway.go 985 B

12345678910111213141516171819
  1. package response
  2. type Gateways struct {
  3. ID int `json:"id" gorm:"column:id"`
  4. Uid int `json:"uid" gorm:"column:uid"`
  5. GatewayName string `json:"gatewayName" gorm:"column:gateway_name"`
  6. Isn string `json:"isn" gorm:"column:isn"`
  7. Osn string `json:"osn" gorm:"column:osn"`
  8. GatewayState uint8 `json:"gatewayState" gorm:"column:gateway_state"`
  9. Description string `json:"description" gorm:"column:description"`
  10. CameraName string `json:"cameraName" gorm:"column:camera_name"`
  11. CameraSn string `json:"cameraSn" gorm:"column:camera_sn"`
  12. StreamId string `json:"streamId" gorm:"column:stream_id"`
  13. StreamUrl string `json:"streamUrl" gorm:"column:stream_url"`
  14. CameraState uint8 `json:"cameraState" gorm:"column:camera_state"`
  15. //IpcastId int `json:"ipcastId" gorm:"column:ipcast_id"`
  16. //IpcastName string `json:"ipcastName" gorm:"column:ipcast_name"`
  17. IpcastState uint8 `json:"ipcastState" gorm:"column:ipcast_state"`
  18. }