POST dz_api/OperationLog/Search

查询日志列表

Request Information

URI Parameters

None.

Body Parameters

OperationLogSearchConditions
NameDescriptionTypeAdditional information
EmployeeId

员工ID

integer

None.

UserSn

用户编号

integer

None.

DateStart

开始日期

date

None.

DateEnd

结束日期

date

None.

LogType

操作类型

OpeLogType

None.

PageIndex

索引

integer

None.

PageSize

分页大小

integer

None.

Keywords

关键字

string

None.

IsSupperAdmin

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "EmployeeId": 1,
  "UserSn": 2,
  "DateStart": "2024-04-28T22:46:10.3549295+08:00",
  "DateEnd": "2024-04-28T22:46:10.3549295+08:00",
  "LogType": 1000,
  "PageIndex": 3,
  "PageSize": 4,
  "Keywords": "sample string 5",
  "IsSupperAdmin": true
}

application/xml, text/xml

Sample:
<OperationLogSearchConditions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Log">
  <DateEnd>2024-04-28T22:46:10.3549295+08:00</DateEnd>
  <DateStart>2024-04-28T22:46:10.3549295+08:00</DateStart>
  <EmployeeId>1</EmployeeId>
  <IsSupperAdmin>true</IsSupperAdmin>
  <Keywords>sample string 5</Keywords>
  <LogType>Visit</LogType>
  <PageIndex>3</PageIndex>
  <PageSize>4</PageSize>
  <UserSn>2</UserSn>
</OperationLogSearchConditions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

查询日志列表

MessageModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Msg

string

None.

Data

Object

None.

StatusCode

StatusCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Msg": "sample string 2",
  "Data": {},
  "StatusCode": 100
}

application/xml, text/xml

Sample:
<MessageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model">
  <Data />
  <Msg>sample string 2</Msg>
  <StatusCode>CONTINUE</StatusCode>
  <Success>true</Success>
</MessageModel>