package models type EchoChatParm struct { Auth string `json:"auth"` Type int `json:"type"` IsliuId string `json:"ISLIUid"` Content string `json:"content"` SenderDpId int64 `json:"senderDpId"` AppInfo string `json:"appInfo"` } // AppInfo信息结构体 type EchoAppInfo struct { AppName string `json:"name"` UserInfoTemplate string `json:"data"` } type DpsEchoChatParm struct { Auth string `json:"auth"` Type int `json:"type"` IsliuId string `json:"ISLIUid"` Content string `json:"content"` Sender string `json:"sender"` } type WorldEchoChatParm struct { Auth string `json:"auth"` Type int `json:"type"` IsliuId string `json:"ISLIUid"` Content string `json:"content"` }