12345678910111213141516171819 |
- package response
- type Gateways struct {
- ID int `json:"id" gorm:"column:id"`
- Uid int `json:"uid" gorm:"column:uid"`
- GatewayName string `json:"gatewayName" gorm:"column:gateway_name"`
- Isn string `json:"isn" gorm:"column:isn"`
- Osn string `json:"osn" gorm:"column:osn"`
- GatewayState uint8 `json:"gatewayState" gorm:"column:gateway_state"`
- 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"`
- CameraState uint8 `json:"cameraState" gorm:"column:camera_state"`
- //IpcastId int `json:"ipcastId" gorm:"column:ipcast_id"`
- //IpcastName string `json:"ipcastName" gorm:"column:ipcast_name"`
- IpcastState uint8 `json:"ipcastState" gorm:"column:ipcast_state"`
- }
|