11 lines
201 B
Go
11 lines
201 B
Go
|
package manscdp
|
||
|
|
||
|
import "encoding/xml"
|
||
|
|
||
|
type MessageReq struct {
|
||
|
XMLName xml.Name `xml:"Query"`
|
||
|
CmdType string `xml:"CmdType"`
|
||
|
SN string `xml:"SN"`
|
||
|
DeviceID string `xml:"DeviceID"`
|
||
|
}
|