POST api/CompanyStageWork/ManagerSearch

管理端阶段工作日志查询列表(管理端多条件查询)

Request Information

URI Parameters

None.

Body Parameters

WebApi.ViewModels.StageWorkLogSearchModel
NameDescriptionTypeAdditional information
CompanyId

integer

None.

DepartmentId

integer

None.

PostId

integer

None.

StartWorkTime

date

None.

EndWorkTime

date

None.

Value

string

None.

StartIndex

获取起始记录 从0开始

integer

None.

Page

起始页码 从1开始

integer

None.

Rows

每页记录数,默认10

integer

None.

Order

排序方式,默认升序(asc)

string

None.

sort

用来排序的字段

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CompanyId": 1,
  "DepartmentId": 2,
  "PostId": 3,
  "StartWorkTime": "2026-06-09T21:14:06.0096019+08:00",
  "EndWorkTime": "2026-06-09T21:14:06.0096019+08:00",
  "Value": "sample string 6",
  "StartIndex": 48,
  "Page": 7,
  "Rows": 8,
  "Order": "sample string 9",
  "sort": "sample string 10"
}

application/xml, text/xml

Sample:
<StageWorkLogSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.ViewModels">
  <Order xmlns="http://schemas.datacontract.org/2004/07/DAL">sample string 9</Order>
  <Page xmlns="http://schemas.datacontract.org/2004/07/DAL">7</Page>
  <Rows xmlns="http://schemas.datacontract.org/2004/07/DAL">8</Rows>
  <sort xmlns="http://schemas.datacontract.org/2004/07/DAL">sample string 10</sort>
  <Value xmlns="http://schemas.datacontract.org/2004/07/DAL">sample string 6</Value>
  <CompanyId>1</CompanyId>
  <DepartmentId>2</DepartmentId>
  <EndWorkTime>2026-06-09T21:14:06.0096019+08:00</EndWorkTime>
  <PostId>3</PostId>
  <StartWorkTime>2026-06-09T21:14:06.0096019+08:00</StartWorkTime>
</StageWorkLogSearchModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

System.Web.Http.Results.JsonResultOfDAL.HandleResult
NameDescriptionTypeAdditional information
Content

DAL.HandleResult

None.

SerializerSettings

Newtonsoft.Json.JsonSerializerSettings

None.

Encoding

System.Text.Encoding

None.

Request

System.Net.Http.HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.