POST Exp/ExpLogList

获取积分日志

Request Information

URI Parameters

None.

Body Parameters

PagingPars
NameDescriptionTypeAdditional information
lastid

最有一条ID

integer

None.

pagenum

每页数据条数

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": {
    "lastid": 1,
    "pagenum": 2
  },
  "msg": null
}

application/xml, text/xml

Sample:
<PagingPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter">
  <lastid>1</lastid>
  <pagenum>2</pagenum>
</PagingPars>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

获取积分日志

Collection of ExpLogResult
NameDescriptionTypeAdditional information
id

id

integer

None.

create_dt

时间

date

None.

change_value

变更值(可能为负数)

integer

None.

change_reason

变更原因

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": [
    {
      "id": 1,
      "create_dt": "2025-12-10T11:19:32.2038729+08:00",
      "change_value": 3,
      "change_reason": "sample string 4"
    },
    {
      "id": 1,
      "create_dt": "2025-12-10T11:19:32.2038729+08:00",
      "change_value": 3,
      "change_reason": "sample string 4"
    }
  ],
  "msg": null
}

application/xml, text/xml

Sample:
<ArrayOfExpLogResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Result">
  <ExpLogResult>
    <change_reason>sample string 4</change_reason>
    <change_value>3</change_value>
    <create_dt>2025-12-10T11:19:32.2038729+08:00</create_dt>
    <id>1</id>
  </ExpLogResult>
  <ExpLogResult>
    <change_reason>sample string 4</change_reason>
    <change_value>3</change_value>
    <create_dt>2025-12-10T11:19:32.2038729+08:00</create_dt>
    <id>1</id>
  </ExpLogResult>
</ArrayOfExpLogResult>