|
@@ -504,6 +504,59 @@ class APIMgr():
|
|
|
s = GSTORE['s']
|
|
|
response =s.post(f"{cfg.target_host}/resourceCenter/waitEmpowerDetail",headers=headers)
|
|
|
return response
|
|
|
+
|
|
|
+ """大会员推送记录列表"""
|
|
|
+ def bigmember_push(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/mType/list", headers=headers, json=
|
|
|
+ {
|
|
|
+ "pageNum": 1,
|
|
|
+ "pageSize": 50,
|
|
|
+ "format": "table",
|
|
|
+ "area": "",
|
|
|
+ "selectTime": "all",
|
|
|
+ "city": "",
|
|
|
+ "buyerClass": "",
|
|
|
+ "subtype": "",
|
|
|
+ "industry": "",
|
|
|
+ "keyWords": "",
|
|
|
+ "fileExists": "",
|
|
|
+ "price": "",
|
|
|
+ "source": "",
|
|
|
+ "exportNum": "",
|
|
|
+ "district": "",
|
|
|
+ "isRead": "",
|
|
|
+ "vt": "m"
|
|
|
+ })
|
|
|
+ return response
|
|
|
+
|
|
|
+ """商机管理推送记录列表"""
|
|
|
+ def entniche_push(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/eType/list", headers=headers, json=
|
|
|
+ {
|
|
|
+ "pageNum": 1,
|
|
|
+ "pageSize": 50,
|
|
|
+ "format": "table",
|
|
|
+ "area": "",
|
|
|
+ "selectTime": "all",
|
|
|
+ "city": "",
|
|
|
+ "buyerClass": "",
|
|
|
+ "subtype": "",
|
|
|
+ "industry": "",
|
|
|
+ "keyWords": "",
|
|
|
+ "fileExists": "",
|
|
|
+ "price": "",
|
|
|
+ "source": "",
|
|
|
+ "exportNum": "",
|
|
|
+ "district": "",
|
|
|
+ "isRead": "",
|
|
|
+ "vt": "s"
|
|
|
+ })
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|