mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2026-09-19 01:27:58 +08:00
16 lines
538 B
Go
16 lines
538 B
Go
package model
|
|
|
|
type MsgPacket struct {
|
|
MsgCode string `json:"msg_code"`
|
|
MsgDataPacket string `json:"msg_data"`
|
|
MsgCmdType string `json:"msg_cmd_type"`
|
|
}
|
|
type MsgDataPacket struct {
|
|
MessageId string `json:"message_id"`
|
|
MessageType string `json:"message_type"`
|
|
MessageData string `json:"message_data"`
|
|
MessageAttach interface{} `json:"message_attach"`
|
|
MessageDateTime string `json:"message_datetime"`
|
|
MessageUnReadStatus bool `json:"message_unread_status"`
|
|
}
|