go_dreamfactory/modules/user/core.go
2024-01-15 17:47:41 +08:00

13 lines
326 B
Go

package user
const (
UserGroupDataCoonfKey = "UserGroupDataCoonf"
)
//用户分组数据
type UserGroupData struct {
CurrGroup int32 `json:"currcroup" bson:"currcroup"` //刷新时间
STime int64 `json:"stime" bson:"stime"` //开始时间
ETime int64 `json:"etime" bson:"etime"` //结束时间
}