You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
515 B
Go

package model
type DeviceVar struct {
Code int `json:"code"`
Message string `json:"message"`
Result []DeviceVarResult `json:"result"`
}
type DeviceVarResult struct {
Did string `json:"did"`
Iid string `json:"iid"`
Siid int `json:"siid"`
Piid int `json:"piid"`
Value interface{} `json:"value"`
Code int `json:"code"`
UpdateTime int `json:"updateTime"`
ExeTime int `json:"exe_time"`
}