...
|
...
|
@@ -9,7 +9,6 @@ import ( |
|
|
"net/http"
|
|
|
"opp/internal/utils"
|
|
|
"opp/services/agg"
|
|
|
"strconv"
|
|
|
"time"
|
|
|
|
|
|
"gitlab.fjmaimaimai.com/mmm-go/gocomm/identity/uid"
|
...
|
...
|
@@ -36,7 +35,7 @@ func Login(header *protocol.RequestHeader, request *protocol.LoginRequest) (rsp |
|
|
var (
|
|
|
user *models.User
|
|
|
userAuth *models.UserAuth
|
|
|
id, _ = strconv.ParseInt(request.Uid, 10, 64)
|
|
|
id = request.Uid
|
|
|
getUserRequest *protocol.UCenterServerLoginRequest = &protocol.UCenterServerLoginRequest{
|
|
|
Uid: id,
|
|
|
Token: request.Token,
|
...
|
...
|
|