|
@@ -1652,7 +1652,7 @@ class APIMgr():
|
|
|
headers = GSTORE['headers']
|
|
|
response = self.s.post(f"{cfg.target_host_app}/jyapi/jybx/core/mobileHotWord", headers=headers)
|
|
|
return response
|
|
|
-
|
|
|
+ #销售-全部线索-新增线索-公司名称/线索名称
|
|
|
def get_CompanyType(self):
|
|
|
headers = GSTORE['headers']
|
|
|
json = {
|
|
@@ -1661,6 +1661,13 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/biService/getCompanyType",headers = headers ,json = json)
|
|
|
return response
|
|
|
|
|
|
+ #个人年终报告-获取信息id
|
|
|
+ def get_InfoId(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/biService/getInfoId",headers = headers)
|
|
|
+ return response
|
|
|
+
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|