14 lines
433 B
Go
14 lines
433 B
Go
package user
|
|
|
|
const (
|
|
UserGroupDataCoonfKey = "UserGroupDataCoonf"
|
|
)
|
|
|
|
//用户分组数据
|
|
type UserGroupData struct {
|
|
CurrGroup int32 `json:"currcroup" bson:"currcroup"` //刷新时间
|
|
CurrGroupNum int32 `json:"currgroupnum" bson:"currgroupnum"` //当前组人数
|
|
STime int64 `json:"stime" bson:"stime"` //开始时间
|
|
ETime int64 `json:"etime" bson:"etime"` //结束时间
|
|
}
|