POST dz_api/Employees/Export

导出列表数据到Excel

Request Information

URI Parameters

None.

Body Parameters

EmployeeSearchCondition
NameDescriptionTypeAdditional information
UserSn

用户编号

integer

None.

keyword

关键字

string

None.

departmentIds

部门Ids

Collection of integer

None.

isShowDisabled

是否显示已停用员工

boolean

None.

pageSize

页码

integer

None.

pageIndex

页面大小

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserSn": 1,
  "keyword": "sample string 2",
  "departmentIds": [
    1,
    2
  ],
  "isShowDisabled": true,
  "pageSize": 4,
  "pageIndex": 5
}

application/xml, text/xml

Sample:
<EmployeeSearchCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Settings">
  <UserSn>1</UserSn>
  <departmentIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </departmentIds>
  <isShowDisabled>true</isShowDisabled>
  <keyword>sample string 2</keyword>
  <pageIndex>5</pageIndex>
  <pageSize>4</pageSize>
</EmployeeSearchCondition>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

导出列表数据到Excel

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.