2025-06-06 14:36:59 +08:00
|
|
|
package proto
|
|
|
|
|
|
|
|
|
|
type GetMonitorDeviceStatus struct {
|
|
|
|
|
ID string `json:"id" form:"id"` //设备编码
|
|
|
|
|
Status string `json:"status" form:"status"` //设备状态
|
2025-06-06 14:53:14 +08:00
|
|
|
Expire int `json:"expire" form:"expire"` //设备过期时间,及更新时间
|
2025-06-06 14:36:59 +08:00
|
|
|
}
|