...
|
...
|
@@ -58,7 +58,10 @@ func (gateway MmmBusinessAdminServiceGateway) httpDo(reqURL string, mathod strin |
|
|
}
|
|
|
|
|
|
func (gateway MmmBusinessAdminServiceGateway) GetUserAuth(userId int64) (*ResponseGetUserAuth, error) {
|
|
|
param := map[string]interface{}{}
|
|
|
param := map[string]interface{}{
|
|
|
"userId": userId,
|
|
|
"platformId": 25,
|
|
|
}
|
|
|
url := gateway.baseURL + "/auth/get-user-auth"
|
|
|
byteData, err := gateway.httpDo(url, "POST", param)
|
|
|
if err != nil {
|
...
|
...
|
|