瀏覽代碼

feat:P432

wangchuanjin 1 年之前
父節點
當前提交
a7f159b528
共有 2 個文件被更改,包括 4 次插入0 次删除
  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{},