go-gb28181/pkg/manscdp/message.go
shikong 529e9fc375
zlm api 测试
补充部分注释
2025-01-25 15:53:25 +08:00

12 lines
303 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package manscdp
import "encoding/xml"
// MessageReq 定义了查询消息的请求结构体使用XML格式进行序列化和反序列化
type MessageReq struct {
XMLName xml.Name `xml:"Query"`
CmdType string `xml:"CmdType"`
SN string `xml:"SN"`
DeviceID string `xml:"DeviceID"`
}