GET api/Web/User/Log/Query?pageindex={pageindex}&pagesize={pagesize}&startdate={startdate}&enddate={enddate}

检索某个用户的使用日志

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageindex

页序号

integer

Default value is 1

pagesize

页大小

integer

Default value is 20

startdate

起始日期YYYYMMDD

string

Default value is

enddate

截止日期YYYYMMDD

string

Default value is

Body Parameters

None.

Response Information

Resource Description

检索某个用户的使用日志

SimplePageDataResultOfWebUserLogInfoParm
NameDescriptionTypeAdditional information
totalreccount

integer

None.

pageIndex

integer

None.

pageSize

integer

None.

pageCount

integer

None.

records

Collection of WebUserLogInfoParm

None.

Response Formats

application/json, text/json

Sample:
{
  "totalreccount": 1,
  "pageIndex": 2,
  "pageSize": 3,
  "pageCount": 4,
  "records": [
    {
      "logid": 1,
      "acttime": "sample string 2",
      "eventname": "sample string 3"
    },
    {
      "logid": 1,
      "acttime": "sample string 2",
      "eventname": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<SimplePageDataResultOfWebUserLogInfoParmjoAqGO1z xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer">
  <pageCount>4</pageCount>
  <pageIndex>2</pageIndex>
  <pageSize>3</pageSize>
  <records xmlns:d2p1="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer.Dosimeter">
    <d2p1:WebUserLogInfoParm>
      <d2p1:acttime>sample string 2</d2p1:acttime>
      <d2p1:eventname>sample string 3</d2p1:eventname>
      <d2p1:logid>1</d2p1:logid>
    </d2p1:WebUserLogInfoParm>
    <d2p1:WebUserLogInfoParm>
      <d2p1:acttime>sample string 2</d2p1:acttime>
      <d2p1:eventname>sample string 3</d2p1:eventname>
      <d2p1:logid>1</d2p1:logid>
    </d2p1:WebUserLogInfoParm>
  </records>
  <totalreccount>1</totalreccount>
</SimplePageDataResultOfWebUserLogInfoParmjoAqGO1z>

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.