package vo
|
|
type RequestDeviceID struct {
|
DeviceID string `json:"DeviceID"`
|
}
|
|
type RequestKeepalive struct {
|
KeepaliveObject RequestDeviceID `json:"KeepaliveObject"`
|
}
|
|
type RequestRegister struct {
|
RegisterObject RequestDeviceID `json:"RegisterObject"`
|
}
|
|
type RequestUnRegister struct {
|
UnRegisterObject RequestDeviceID `json:"UnRegisterObject"`
|
}
|
|
type ResponseStatus struct {
|
RequestURL string
|
StatusCode int
|
StatusString string
|
Id string
|
LocalTime string
|
}
|
|
type ResponseSystemTime struct {
|
VIIDServerID string
|
TimeMode interface{}
|
LocalTime string
|
TimeZone interface{}
|
}
|
|
type ResponseStatusList struct {
|
ResponseStatusObject []ResponseStatus
|
}
|