文档
测试

公司列表

POST
/recruitment/jobSeeker/companyList

接口描述

求职者身份进入应用后,展示公司列表页

请求头

参数名
类型
描述
必填
token
String
用户token
必填
Content-Type
String
application/json
必填

请求参数

参数名
类型
描述
必填
pageIndex
int
当前页码(默认为1)
必填
pageSize
int
每页记录条数(默认为10)
必填
searchText
String
搜索文本
必填
companySizeList
Array
公司规模的枚举值列表
必填
financingStageList
Array
融资规模的枚举值列表
必填
industryList
Array
公司所属行业枚举值列表
必填

响应参数

参数名
类型
描述
必填
result
int
响应码
必填
message
String
响应消息
必填
data
Object
响应数据体
必填
total
int
总条数
必填
totalPage
int
总页数
必填
currentPage
int
当前页数
必填
data
Array
公司列表
必填
id
int
公司ID
必填
logoUrl
String
公司logo的URL
必填
brandName
String
公司品牌名称
必填
address
String
公司地址
必填
financingStage
String
融资阶段
必填
companySize
String
公司规模
必填
industry
String
公司行业
必填
hotJobTitle
String
热职职位名称
必填
jobCount
String
招聘中的职位总数
必填

说明 / 示例

``` { "result": 200, "message": "ok", "data": { "currentPage": 1, "totalPage": 1, "total": 1, "data": [ { "id": 123456, "logoUrl": "logoURL", "brandName": "啦啦啦品牌公司", "address": "东升路清坊街", "financingStage": "未融资", "companySize": "0-20人", "industry": "移动互联网/电商", "hotJobTitle": "", "jobCount": 0 } ] } } ```