|
@@ -6,6 +6,7 @@ import (
|
|
|
|
|
|
//免费用户
|
|
|
type FreeUser struct {
|
|
|
+ AllUsers map[*UserInfo]bool
|
|
|
Users map[*UserInfo]bool
|
|
|
Title_KeyDfa *KeyDfa
|
|
|
AreaUsers map[string]map[*UserInfo]bool
|
|
@@ -15,6 +16,7 @@ type FreeUser struct {
|
|
|
//
|
|
|
func NewFreeUser() *FreeUser {
|
|
|
return &FreeUser{
|
|
|
+ AllUsers: map[*UserInfo]bool{},
|
|
|
Users: map[*UserInfo]bool{},
|
|
|
AreaUsers: map[string]map[*UserInfo]bool{},
|
|
|
SubtypeUsers: map[string]map[*UserInfo]bool{},
|