package model import ( "iot_manager_service/app/device/dao" "time" ) type RsqZigbeeList struct { Records []ZigbeeDetail `json:"records"` //记录列表 Current int `json:"current"` //当前分页 Size int `json:"size"` //每页数量 Pages int `json:"pages"` //总页数 Total int `json:"total"` //总数 } type ReqZigbeeRemove struct { IDs int `json:"ids"` //分组编码 } type ZigbeeDetail struct { dao.Zigbee EndLineTime time.Time `json:"endLineTime"` //最后上线时间 NetworkState string `json:"networkState"` //网络状态 RunState string `json:"runState"` //运行状态 }