...
|
...
|
@@ -59,8 +59,8 @@ func (gateway MmmBusinessAdminServiceGateway) httpDo(reqURL string, mathod strin |
|
|
|
|
|
func (gateway MmmBusinessAdminServiceGateway) GetUserAuth(userId int64) (*ResponseGetUserAuth, error) {
|
|
|
param := map[string]interface{}{
|
|
|
"userId": userId,
|
|
|
"platformId": 25,
|
|
|
"userId": fmt.Sprint(userId),
|
|
|
"platformId": "25", //天联共创固定值:25
|
|
|
}
|
|
|
url := gateway.baseURL + "/auth/get-user-auth"
|
|
|
byteData, err := gateway.httpDo(url, "POST", param)
|
...
|
...
|
|