EchoChatParm.go 743 Bytes
Newer Older
Ford committed
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
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"`
}