zhangzengfei
2024-10-22 a254bc563003a9e7b3a8f1307df38b8ae4274a4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
}