Ver código fonte

增加LOGINID获取调试代码

zhou.xiaoning 4 anos atrás
pai
commit
c21d3cca02
1 arquivos alterados com 10 adições e 0 exclusões
  1. 10 0
      models/account.go

+ 10 - 0
models/account.go

@@ -6,6 +6,7 @@ import (
 	"fmt"
 	"mtp2_if/db"
 	"mtp2_if/global/e"
+	"mtp2_if/logger"
 	"mtp2_if/utils"
 	"strconv"
 	"time"
@@ -566,6 +567,15 @@ func GetLoginAccountByLoginCode(loginCode string) (*Loginaccount, error) {
 	}
 
 	if has {
+		logger.GetLogger().Debugln("func1 loginAccount: %v", loginaccount)
+
+		arr := make([]Loginaccount, 0)
+		if err = engine.Where("LOGINCODE = ?", loginCode).Find(&arr); err == nil {
+			if len(arr) > 0 {
+				logger.GetLogger().Debugln("func2 loginAccount: %v", arr[0])
+			}
+		}
+
 		return loginaccount, nil
 	}