12345678910111213141516171819202122232425 |
- 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"`
- }
|