wangchuanjin 1 anno fa
parent
commit
a7f159b528
2 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 2 0
      matcher/freematch.go
  2. 2 0
      matcher/paymatch.go

+ 2 - 0
matcher/freematch.go

@@ -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{},

+ 2 - 0
matcher/paymatch.go

@@ -8,6 +8,7 @@ import (
 
 //付费用户
 type PayUser struct {
+	AllUsers        map[*UserInfo]bool
 	Users           map[*UserInfo]bool
 	Title_KeyDfa    *KeyDfa
 	Detail_KeyDfa   *KeyDfa
@@ -21,6 +22,7 @@ type PayUser struct {
 //
 func NewPayUser() *PayUser {
 	return &PayUser{
+		AllUsers:        map[*UserInfo]bool{},
 		Users:           map[*UserInfo]bool{},
 		BuyerclassUsers: map[string]map[*UserInfo]bool{},
 		AreaUsers:       map[string]map[*UserInfo]bool{},