- package response
- type Gateways struct {
- ID int `json:"id" gorm:"column:id"`
- GatewayName string `json:"gatewayName" gorm:"column:gateway_name"`
- Osn string `json:"osn" gorm:"column:osn"`
- Description string `json:"description" gorm:"column:description"`
- CameraName string `json:"cameraName" gorm:"column:camera_name"`
- CameraSn string `json:"cameraSn" gorm:"column:camera_sn"`
- StreamId string `json:"streamId" gorm:"column:stream_id"`
- StreamUrl string `json:"streamUrl" gorm:"column:stream_url"`
- Status int `json:"ipcastState" gorm:"column:ipcast_state"`
- }
|