|
@@ -1098,6 +1098,17 @@ class APIMgr():
|
|
|
response = s.post(f"{cfg.target_host}/entbase/person/add", headers=hearders, data=data)
|
|
|
return response
|
|
|
|
|
|
+ """企业信息"""
|
|
|
+ def enterprise_information(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ params= {
|
|
|
+ "t":"1736561573400"
|
|
|
+ }
|
|
|
+ response = s.get(f"{cfg.target_host}/entbase/ent/entinfo", headers=hearders, params=params)
|
|
|
+ return response
|
|
|
+
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|