gateway.go 390 B

12345678910111213141516171819
  1. package request
  2. import (
  3. "lcfns/model/common/request"
  4. )
  5. type GatewayRequest struct {
  6. //条件查询设备,网关名,网关osn,摄像头sn,ip音柱devid,
  7. Uid int `json:"uid"`
  8. Name string `json:"gatewayName"`
  9. Osn string `json:"osn"`
  10. CameraSn string `json:"cameraSn"`
  11. IpcastId int `json:"ipcastId"`
  12. request.PageInfo
  13. }
  14. type Ids struct {
  15. IDS []int `json:"ids"`
  16. }