123456789101112131415161718192021222324 |
- package model
- import "iot_manager_service/app/device/dao"
- type RspBridgeSensorList struct {
- Records []dao.BridgeSensor `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Total int `json:"total"`
- Pages int `json:"pages"`
- }
- type ReqBridgeSensorRemove struct {
- IDs int `json:"ids"`
- SN int `json:"sn"`
- Name string `json:"name"`
- }
- type ReqBridgeSensorEnable struct {
- ID int `json:"id"`
- Status int `json:"status"`
- Name int `json:"name"`
- SN int `json:"sn"`
- }
|