|
|
@ -78,9 +78,6 @@ func ForEachUser(f func(u *User) bool) {
|
|
|
|
func Codes(isFund bool) []string {
|
|
|
|
func Codes(isFund bool) []string {
|
|
|
|
var codes = map[string]struct{}{}
|
|
|
|
var codes = map[string]struct{}{}
|
|
|
|
ForEachUser(func(u *User) bool {
|
|
|
|
ForEachUser(func(u *User) bool {
|
|
|
|
if u.IsStop() {
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cds := u.Codes(isFund)
|
|
|
|
cds := u.Codes(isFund)
|
|
|
|
for _, cd := range cds {
|
|
|
|
for _, cd := range cds {
|
|
|
|
if _, ok := codes[cd]; ok {
|
|
|
|
if _, ok := codes[cd]; ok {
|
|
|
|