This commit is contained in:
shoopea 2019-05-19 20:01:32 +08:00
parent bbd11001b2
commit 431a2191ee

10
def.go
View File

@ -46,11 +46,11 @@ type ChatWarsMessageReportAck struct {
type ChatWarsMessageDuelFight struct {
ObjID64 int64 `json:"obj_id"`
WinCastleID int64 `json:"win_castle"`
WinGuild `json:"win_guild"`
WinUser `json:"win_user"`
WinLife `json:"win_life"`
LossCastleID `json:"loss_castle"`
WinCastle string `json:"win_castle"`
WinGuild string `json:"win_guild"`
WinUser string `json:"win_user"`
WinLife int64 `json:"win_life"`
LossCastle string `json:"loss_castle"`
LossGuild string `json:"loss_guild"`
LossUser string `json:"loss_user"`
LossLife int64 `json:"loss_life"`