Commit 9ababb81 by 高宇强

gyq

parent adae7ccc
...@@ -34,6 +34,8 @@ class EnterpriseQueryAPI extends APIBase { ...@@ -34,6 +34,8 @@ class EnterpriseQueryAPI extends APIBase {
case "gameListByAuthor"://获取企业游戏出版及运营信息列表 case "gameListByAuthor"://获取企业游戏出版及运营信息列表
case "licenseCountByAuthor"://获取企业证照信息数量 case "licenseCountByAuthor"://获取企业证照信息数量
case "licenseListByAuthor"://获取企业证照信息列表 case "licenseListByAuthor"://获取企业证照信息列表
case "ipCountByAuthor"://获取企业域名信息数量
case "ipListByAuthor"://获取企业域名信息列表
opResult = await this.enterSve.opReqResult(pobj, req); opResult = await this.enterSve.opReqResult(pobj, req);
break; break;
default: default:
......
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
1. [获取企业游戏出版及运营信息列表](#gameListByAuthor) 1. [获取企业游戏出版及运营信息列表](#gameListByAuthor)
1. [获取企业证照信息数量](#licenseCountByAuthor) 1. [获取企业证照信息数量](#licenseCountByAuthor)
1. [获取企业证照信息列表](#licenseListByAuthor) 1. [获取企业证照信息列表](#licenseListByAuthor)
1. [获取企业域名信息数量](#ipCountByAuthor)
1. [获取企业域名信息列表](#ipListByAuthor)
## **<a name="getLicenses"> 根据公司得到推荐要办的证书</a>** ## **<a name="getLicenses"> 根据公司得到推荐要办的证书</a>**
[返回到目录](#menu) [返回到目录](#menu)
...@@ -243,3 +245,61 @@ ...@@ -243,3 +245,61 @@
bizmsg: 'empty' bizmsg: 'empty'
} }
``` ```
## **<a name="ipCountByAuthor"> 获取企业域名信息数量</a>**
[返回到目录](#menu)
##### URL
[/action/enterpriseQuery/ipCountByAuthor]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 渠道执行的类型 actionType:ipCountByAuthor
``` javascript
{
"author": "中国专利信息中心"//公司名称
}
```
#### 返回结果
```javascript
{ status: 0, msg: '操作成功', data: 5370, bizmsg: 'empty' }
```
## **<a name="ipListByAuthor"> 获取企业域名信息列表</a>**
[返回到目录](#menu)
##### URL
[/action/enterpriseQuery/ipListByAuthor]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 渠道执行的类型 actionType:ipListByAuthor
``` javascript
{
"author": "中国专利信息中心",//公司名称
"page_size":10,
"current_page":0
}
```
#### 返回结果
```javascript
{
"status": 0,
"msg": "操作成功",
"data": {
"total": 1,
"data": [
{
"card_num": "合字B1.B2-20090001",//备案号
"web_adress": "http://202.108.152.218:8088/IcpProject_ISP/",//域名信息
"phone": "010-65195500",//电话
"company_name": "东方口岸科技有限公司",//公司名
"phone2": null,//电话2
"phone1": "86-010-65195500"//电话1
}
]
},
"bizmsg": "empty",
"requestId": "0af38a83679640b380d149e9dd4283de"
}
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment