camera.go 425 B

123456789101112
  1. package model
  2. type ReqCamera struct {
  3. Code string `json:"code"` //设备编号,禁止修改
  4. GID string `json:"gid"` //网关ID
  5. Tenant string `json:"tenant"` //租户ID
  6. Name string `json:"name"` //设备名称
  7. Brand int `json:"brand"` //品牌
  8. Model int `json:"model"` //型号
  9. DevType int `json:"devtype"` //设备类型
  10. State int `json:"state"` //1启用,0禁用
  11. }