文档
测试

查询用户注册企业列表信息

POST
http://113.204.181.78:28000/api/sysEnterpriseInfo/getRegisterEntInfoList

请求参数

参数名
类型
描述
必填
pageSize
String
每页的条数
必填
pageNo
String
当前页码,从0开始
必填
condition
object
查询条件组合
必填
telphone
string
注册人电话号码,不能为空
必填
entName
string
企业名称,可空
必填

响应参数

参数名
类型
描述
必填
code
number
示例:1
必填
result
object
数据字典
必填
count
number
示例:1
必填
list
array
数据列表
必填
id
string
示例:6d515e456b36ce8a60e1e24b2b394ab5
必填
entName
string
示例:启迪数华
必填
creditCode
string
示例:23480283829384234082
必填
legalPerson
string
示例:李元
必填
businessRegister
string
示例:张三
必填
telphone
string
示例:13123423212
必填
entType
string
示例:entType1
必填
address
string
示例:九龙坡区启迪科技园5号楼3-4层
必填
entEmployees
string
示例:50
必填
parkId
string
示例:1
必填
createTime
string
示例:2020-02-11 20:53:16
必填
createUser
string
示例:1
必填
updateTime
string
示例:2020-02-11 20:53:16
必填

说明 / 示例

请求报文: { "pageSize": 1, "pageNo": 0, "condition": { "telphone": "13123423212", "entName": "启迪数华" } } 返回报文: { "code": 1, "result": { "count": 1, "list": [ { "id": "6d515e456b36ce8a60e1e24b2b394ab5", "entName": "启迪数华", "creditCode": "23480283829384234082", "legalPerson": "李元", "businessRegister": "张三", "telphone": "13123423212", "entType": "entType1", "address": "九龙坡区启迪科技园5号楼3-4层", "entEmployees": "50", "parkId": "1", "createTime": "2020-02-11 20:53:16", "createUser": "1", "updateTime": "2020-02-11 20:53:16" } ] } }