正在显示
1 个修改的文件
包含
3 行增加
和
3 行删除
@@ -13,7 +13,7 @@ import ( | @@ -13,7 +13,7 @@ import ( | ||
13 | ) | 13 | ) |
14 | 14 | ||
15 | const ( | 15 | const ( |
16 | - ResponseOk string = "0" | 16 | + ResponseOk int = 0 |
17 | ) | 17 | ) |
18 | 18 | ||
19 | const ( | 19 | const ( |
@@ -75,7 +75,7 @@ func (client BusinessAdminClient) Call(param IBusinessAdminParam) ([]byte, error | @@ -75,7 +75,7 @@ func (client BusinessAdminClient) Call(param IBusinessAdminParam) ([]byte, error | ||
75 | } | 75 | } |
76 | 76 | ||
77 | type CommResponse struct { | 77 | type CommResponse struct { |
78 | - Code string `json:"code"` | 78 | + Code int `json:"code"` |
79 | Msg string `json:"msg"` | 79 | Msg string `json:"msg"` |
80 | } | 80 | } |
81 | 81 | ||
@@ -88,7 +88,7 @@ func (resp CommResponse) IsOK() bool { | @@ -88,7 +88,7 @@ func (resp CommResponse) IsOK() bool { | ||
88 | 88 | ||
89 | //GetuserAuth 企业后台鉴权 | 89 | //GetuserAuth 企业后台鉴权 |
90 | //userId 企业后台的用户id ,对应机会系统内的user_company表的字段id | 90 | //userId 企业后台的用户id ,对应机会系统内的user_company表的字段id |
91 | -//PlatformId 编号 机会系统固定值18 | 91 | +//PlatformId 编号 机会系统固定值3 |
92 | type RequestGetuserAuth struct { | 92 | type RequestGetuserAuth struct { |
93 | UserId string `json:"userId"` | 93 | UserId string `json:"userId"` |
94 | PlatformId string `json:"platformId"` | 94 | PlatformId string `json:"platformId"` |
-
请 注册 或 登录 后发表评论