go-common/app/interface/live/app-room/model/model.go

23 lines
782 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
//History 存档信息
type History struct {
Text string `json:"text"`
NickName string `json:"nickname"`
UID int64 `json:"uid"`
UnameColor string `json:"uname_color"`
TimeLine string `json:"timeline"`
Isadmin int32 `json:"isadmin"`
Vip int `json:"vip"`
SVip int `json:"svip"`
Medal []interface{} `json:"medal"`
Title []interface{} `json:"title"`
UserLevel []interface{} `json:"user_level"`
Rank int32 `json:"rank"`
Teamid int64 `json:"teamid"`
RND string `json:"rnd"`
UserTitle string `json:"user_title"`
GuardLevel int `json:"guard_level"`
Bubble int64 `json:"bubble"`
}