...
|
...
|
@@ -13,7 +13,7 @@ import ( |
|
|
)
|
|
|
|
|
|
const (
|
|
|
ResponseOk string = "0"
|
|
|
ResponseOk int = 0
|
|
|
)
|
|
|
|
|
|
const (
|
...
|
...
|
@@ -75,7 +75,7 @@ func (client BusinessAdminClient) Call(param IBusinessAdminParam) ([]byte, error |
|
|
}
|
|
|
|
|
|
type CommResponse struct {
|
|
|
Code string `json:"code"`
|
|
|
Code int `json:"code"`
|
|
|
Msg string `json:"msg"`
|
|
|
}
|
|
|
|
...
|
...
|
@@ -88,7 +88,7 @@ func (resp CommResponse) IsOK() bool { |
|
|
|
|
|
//GetuserAuth 企业后台鉴权
|
|
|
//userId 企业后台的用户id ,对应机会系统内的user_company表的字段id
|
|
|
//PlatformId 编号 机会系统固定值18
|
|
|
//PlatformId 编号 机会系统固定值3
|
|
|
type RequestGetuserAuth struct {
|
|
|
UserId string `json:"userId"`
|
|
|
PlatformId string `json:"platformId"`
|
...
|
...
|
|