123456789101112131415161718 |
- package devices
- import "time"
- type ReqCamera struct {
- ID int `json:"id"`
- CameraName string `json:"cameraName"`
- CameraCode string `json:"cameraCode"`
- CameraType int `json:"cameraType"`
- CameraBrand string `json:"cameraBrand"`
- CameraModel string `json:"cameraModel"`
- IpAddress string `json:"ipAddress"`
- GatewayID int `json:"gatewayId"`
- Shunt int `json:"shunt"`
- ShuntDescribe string `json:"shuntDescribe"`
- StreamId string `json:"streamId"`
- InstallTime time.Time `json:"installTime"`
- }
|