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