12345678910111213141516171819 |
- package request
- import (
- "lcfns/model/common/request"
- )
- type GatewayRequest struct {
- //条件查询设备,网关名,网关osn,摄像头sn,ip音柱devid,
- Uid int `json:"uid"`
- Name string `json:"gatewayName"`
- Osn string `json:"osn"`
- CameraSn string `json:"cameraSn"`
- IpcastId int `json:"ipcastId"`
- request.PageInfo
- }
- type Ids struct {
- IDS []int `json:"ids"`
- }
|