bridgeSensor.go 742 B

123456789101112131415161718192021222324
  1. package model
  2. import "iot_manager_service/app/device/dao"
  3. type RspBridgeSensorList struct {
  4. Records []dao.BridgeSensor `json:"records"` //记录列表
  5. Current int `json:"current"` //当前分页
  6. Size int `json:"size"` //每页数量
  7. Total int `json:"total"` //总数
  8. Pages int `json:"pages"` //总页数
  9. }
  10. type ReqBridgeSensorRemove struct {
  11. IDs int `json:"ids"` //分组编码
  12. SN int `json:"sn"` //sn
  13. Name string `json:"name"` //名称
  14. }
  15. type ReqBridgeSensorEnable struct {
  16. ID int `json:"id"` //编码
  17. Status int `json:"status"` //启用禁用:1启用2禁用
  18. Name int `json:"name"` //名称
  19. SN int `json:"sn"` //sn
  20. }