POST api/WXProgramHR/GetNeedsPlan

返回招聘岗位信息

Request Information

URI Parameters

None.

Body Parameters

NeedsPostRequest
NameDescriptionTypeAdditional information
offset

偏移量

integer

None.

limit

每页显示数量

integer

None.

post_type_code

117001:营销,117002:电商,117003:新媒体,117004:供应链,117005:IT技术,117006:仓储物流,117007:后勤服务,

string

None.

Request Formats

application/json, text/json

Sample:
{
  "offset": 1,
  "limit": 2,
  "post_type_code": "sample string 3"
}

application/xml, text/xml

Sample:
<NeedsPostRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi">
  <limit>2</limit>
  <offset>1</offset>
  <post_type_code>sample string 3</post_type_code>
</NeedsPostRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'NeedsPostRequest'.

Response Information

Resource Description

NeedsPostResponse
NameDescriptionTypeAdditional information
list

招聘岗位列表

Collection of NeedsPost

None.

msg

消息

string

None.

result

是否成功

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "list": [
    {
      "id": 1,
      "name": "sample string 2",
      "count": "sample string 3",
      "dec": "sample string 4",
      "duty": "sample string 5",
      "open": true,
      "icon": "sample string 7",
      "post_type_code": "sample string 8",
      "work_place_name": "sample string 9",
      "work_place_code": 10,
      "isDelete": 1,
      "is_use": 1
    },
    {
      "id": 1,
      "name": "sample string 2",
      "count": "sample string 3",
      "dec": "sample string 4",
      "duty": "sample string 5",
      "open": true,
      "icon": "sample string 7",
      "post_type_code": "sample string 8",
      "work_place_name": "sample string 9",
      "work_place_code": 10,
      "isDelete": 1,
      "is_use": 1
    }
  ],
  "msg": "sample string 1",
  "result": true
}

application/xml, text/xml

Sample:
<NeedsPostResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi">
  <msg>sample string 1</msg>
  <result>true</result>
  <list>
    <NeedsPost>
      <count>sample string 3</count>
      <dec>sample string 4</dec>
      <duty>sample string 5</duty>
      <icon>sample string 7</icon>
      <id>1</id>
      <isDelete>1</isDelete>
      <is_use>1</is_use>
      <name>sample string 2</name>
      <open>true</open>
      <post_type_code>sample string 8</post_type_code>
      <work_place_code>10</work_place_code>
      <work_place_name>sample string 9</work_place_name>
    </NeedsPost>
    <NeedsPost>
      <count>sample string 3</count>
      <dec>sample string 4</dec>
      <duty>sample string 5</duty>
      <icon>sample string 7</icon>
      <id>1</id>
      <isDelete>1</isDelete>
      <is_use>1</is_use>
      <name>sample string 2</name>
      <open>true</open>
      <post_type_code>sample string 8</post_type_code>
      <work_place_code>10</work_place_code>
      <work_place_name>sample string 9</work_place_name>
    </NeedsPost>
  </list>
</NeedsPostResponse>