gateway.go 600 B

12345678910111213
  1. package response
  2. type Gateways struct {
  3. ID int `json:"id" gorm:"column:id"`
  4. GatewayName string `json:"gatewayName" gorm:"column:gateway_name"`
  5. Osn string `json:"osn" gorm:"column:osn"`
  6. Description string `json:"description" gorm:"column:description"`
  7. CameraName string `json:"cameraName" gorm:"column:camera_name"`
  8. CameraSn string `json:"cameraSn" gorm:"column:camera_sn"`
  9. StreamId string `json:"streamId" gorm:"column:stream_id"`
  10. StreamUrl string `json:"streamUrl" gorm:"column:stream_url"`
  11. Status int `json:"ipcastState" gorm:"column:ipcast_state"`
  12. }